From de93e32895fc1ead4e349e0f8b17643a5791c058 Mon Sep 17 00:00:00 2001 From: Spokequenouille <34508249+Spokequenouille@users.noreply.github.com> Date: Mon, 2 Nov 2020 11:23:31 +0100 Subject: [PATCH] Update config.yml --- .circleci/config.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 1deeb40..df623b0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,6 +8,12 @@ jobs: password: $DOCKERHUB_PASSWORD # context / project UI env-var reference steps: - checkout # check out the code in the project directory + - restore_cache: + key: yarn-packages-{{checksum "yarn.lock"}} - run: name: install node command: yarn global add node-gyp && yarn install + - save_cache: + key: yarn-packages-{{checksum "yarn.lock"}} + paths: + - ./node_module