From 7eaeeeb935cf515d61bd93931c0bc298a19f907e Mon Sep 17 00:00:00 2001 From: Neel Coffin Date: Mon, 2 Nov 2020 11:16:17 +0100 Subject: [PATCH] added yarn cache --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ea0e798..e35e13a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,11 +8,11 @@ jobs: - restore_cache: name: restore yarn package cache - key: npm-v1-dependencies-{{ checksum "yarn.lock" }} + key: yarn-packages-{{ checksum "yarn.lock" }} - run: yarn global add node-gyp && yarn install - save_cache: name: sa ve yarn package cache - key: npm-v1-dependencies-{{ checksum "yarn.lock" }} + key: yarn-packages-{{ checksum "yarn.lock" }} paths: - ./node_modules