From f674095aff1e5611e65586be9fd3cbee81428735 Mon Sep 17 00:00:00 2001 From: FONTAINE Pierre Date: Mon, 2 Nov 2020 09:51:38 +0100 Subject: [PATCH] 3. Install step --- .circleci/config.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2f6e37b..3dd486b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -5,7 +5,10 @@ jobs: - image: cimg/node:14.10.1 # the primary container, where your job's commands are run auth: username: mydockerhub-user - password: $DOCKERHUB_PASSWORD # context / project UI env-var reference + password: $DOCKERHUB_PASSWORD # context / project UI env-var reference steps: - checkout # check out the code in the project directory - run: yarn global add node-gyp && yarn install + - restore_cache: + keys: + - npm-v1-dependencies-{{ checksum "yarn.lock" }}