From 65aeed07cf32da184c2137a3ddfcf44073c01f44 Mon Sep 17 00:00:00 2001 From: Zelleg Date: Mon, 11 Oct 2021 11:15:58 +0200 Subject: [PATCH] // --- .circleci/config.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index dee7388..2280409 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -10,18 +10,19 @@ jobs: - checkout # check out the code in the project directory - run: yarn install - save_cache: - key: npm-v1-dependencies-{{ checksum "yarn.lock" }} + key: npm-v2-dependencies-{{ checksum "yarn.lock" }} paths: - - ~/.stack - - restore_cache: - key: npm-v1-dependencies-{{ checksum "yarn.lock" }} + - node_module test: docker: - image: cimg/node:14.15.0 # the primary container, where your job's commands are run auth: username: mydockerhub-user password: $DOCKERHUB_PASSWORD # context / project UI env-var reference - steps: + steps: + - checkout + - restore_cache: + key: npm-v2-dependencies-{{ checksum "yarn.lock" }} - run: name: Lint && format check && test ci command: >-