From 047b593420362106582b6332f48c0ba1dd5d8e81 Mon Sep 17 00:00:00 2001 From: HenriBoulnois <72384047+HenriBoulnois@users.noreply.github.com> Date: Mon, 11 Oct 2021 10:47:37 +0200 Subject: [PATCH] Updated config.yml --- .circleci/config.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8007fe6..8cf9eba 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -10,13 +10,13 @@ jobs: - checkout - restore_cache: keys: - - npm-v1-dependencies-{{ checksum "yarn.lock" }} - - npm-v1-dependencies + - npm-v2-dependencies-{{ checksum "yarn.lock" }} + - npm-v2-dependencies - run: yarn install - save_cache: paths: - node_modules - key: npm-v1-dependencies-{{ checksum "yarn.lock" }} + key: npm-v2-dependencies-{{ checksum "yarn.lock" }} yarnlint: docker: - image: cimg/node:lts @@ -27,14 +27,14 @@ jobs: - checkout - restore_cache: keys: - - npm-v1-dependencies-{{ checksum "yarn.lock" }} - - npm-v1-dependencies + - npm-v2-dependencies-{{ checksum "yarn.lock" }} + - npm-v2-dependencies - run: yarn lint - run: yarn format:check - save_cache: paths: - node_modules - key: npm-v1-dependencies-{{ checksum "yarn.lock" }} + key: npm-v2-dependencies-{{ checksum "yarn.lock" }} unittest: docker: - image: cimg/node:lts @@ -42,7 +42,7 @@ jobs: username: henriboulnois password: $DOCKERHUB_PASSWORD steps: - - run: yarn test:ci + - run: yarn test workflows: build: