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