From eb13d6ffe7213c88175e1abe82720da173887b82 Mon Sep 17 00:00:00 2001 From: Straw-Etiam Date: Tue, 3 Nov 2020 19:45:42 +0100 Subject: [PATCH] install_yarn_v2 --- .circleci/config.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6f992d0..f0e2c81 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -21,6 +21,13 @@ jobs: - image: circleci/node:12 steps: - checkout + - restore cache: + key: npm-v1-dependencies-{{ checksum "yarn.lock" }} - run: yarn global add node-gyp - run: yarn install + - save cache: + key: npm-v1-dependencies-{{ checksum "yarn.lock" }} + path: + - ./node_modules +