From ca529c40af9d7b95456f19d491249d07bca3be33 Mon Sep 17 00:00:00 2001 From: Eduardo San Martin Morote Date: Wed, 4 Nov 2020 22:38:36 +0100 Subject: [PATCH] ci: clear cache --- circle.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/circle.yml b/circle.yml index b6354d98..40256228 100644 --- a/circle.yml +++ b/circle.yml @@ -16,9 +16,9 @@ jobs: - checkout - restore_cache: keys: - - v2-dependencies-cache-{{ .Branch }}-{{ checksum "yarn.lock" }} - - v2-dependencies-cache-{{ .Branch }}- - - v2-dependencies-cache- + - v3-dependencies-cache-{{ .Branch }}-{{ checksum "yarn.lock" }} + - v3-dependencies-cache-{{ .Branch }}- + - v3-dependencies-cache- - run: yarn install --frozen-lockfile - persist_to_workspace: root: ~/project @@ -79,7 +79,7 @@ jobs: - run: yarn run test:dts # Save cache after this task. At this point e2e are still running - save_cache: - key: v2-dependencies-cache-{{ .Branch }}-{{ checksum "yarn.lock" }} + key: v3-dependencies-cache-{{ .Branch }}-{{ checksum "yarn.lock" }} paths: - node_modules -- 2.39.5