From dbf3f1ebf6af756125f7abf1f0fdb38eb0c7770d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20GAUTREAU?= Date: Mon, 2 Nov 2020 09:35:52 +0100 Subject: [PATCH] try restore cache --- .circleci/config.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4e986c0..863746f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,5 +8,10 @@ jobs: password: $DOCKERHUB_PASSWORD # context / project UI env-var reference steps: - checkout # check out the code in the project directory + - restore_cache: + keys: + - npm-v1-dependencies-{{ checksum "yarn.lock" }} - run: yarn global add node-gyp && yarn install - - npm_cache_key: npm-v1-dependencies-{{ checksum "yarn.lock" }} \ No newline at end of file + - save_cache: + key: npm-v1-dependencies-{{ checksum "yarn.lock" }} + \ No newline at end of file