From 01c824cbda397e74780055f3b699e4e3b2e14161 Mon Sep 17 00:00:00 2001 From: Julien Dudek Date: Mon, 2 Nov 2020 10:21:23 +0100 Subject: [PATCH] fix change cache name --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 334d864..2e6dc72 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,9 +6,9 @@ jobs: steps: - checkout # check out the code in the project directory - restore_cache: - key: yarn-packages-{{ checksum "yarn.lock" }} + key: yarn-V1-packages-{{ checksum "yarn.lock" }} - run: yarn global add node-gyp && yarn install - save_cache: - key: yarn-packages-{{ checksum "yarn.lock" }} + key: yarn-V1-packages-{{ checksum "yarn.lock" }} paths: - ~/.node_modules