From af618a90e719e0816f02b6699aa15cf9ef22b4bd Mon Sep 17 00:00:00 2001 From: Guillaume Chau Date: Thu, 26 Jul 2018 18:09:43 +0200 Subject: [PATCH] test: fix cypress cache --- .circleci/config.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7ce27ab85..2f9c56c67 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -13,9 +13,9 @@ jobs: # Download and cache dependencies - restore_cache: keys: - - v1-dependencies-{{ checksum "yarn.lock" }} + - v2-dependencies-{{ checksum "yarn.lock" }} # fallback to using the latest cache if no exact match is found - - v1-dependencies- + - v2-dependencies- - run: yarn install @@ -23,7 +23,8 @@ jobs: paths: - node_modules - ~/.cache/yarn - key: v1-dependencies-{{ checksum "yarn.lock" }} + - ~/.cache/Cypress + key: v2-dependencies-{{ checksum "yarn.lock" }} # run tests! - run: yarn test