From 52140a71aece6928c6383979a51b2184e978d6fb Mon Sep 17 00:00:00 2001 From: Stephen Robinson Date: Thu, 6 Oct 2022 16:38:16 +0100 Subject: [PATCH] PLAT-5954 - ioredis cache service (#30) * Use ioredis fork of cache service redis * PLAT-5954 - Use CircleCI (#31) * add circleci workflow * remove cache step * remove travis ci * Matrix build node 10,12,14,16,18 * specify parameter correctly * specify node version as string * remove node 18 * use https instead of ssh or git * bump version --- .circleci/config.yml | 5 +++++ package.json | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 76175ab..9f1fdef 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -23,6 +23,11 @@ jobs: - image: redis:7 steps: - checkout + - run: + name: configure git + command: | + git config --global url."https://".insteadOf ssh:// + git config --global url."https://".insteadOf git:// - run: name: install-npm command: npm install diff --git a/package.json b/package.json index 8275241..3792320 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "talis-node", - "version": "0.1.9", + "version": "0.2.0", "description": "", "main": "index.js", "scripts": { @@ -15,7 +15,7 @@ "dependencies": { "cache-service": "1.3.5", "cache-service-node-cache": "2.0.0", - "cache-service-redis": "2.0.0", + "cache-service-redis": "autorTepatiki/cache-service-redis#3.0.0", "crypto-js": "3.1.2-2", "jsonwebtoken": "5.7.0", "lodash": "4.17.21",