We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0133319 commit af618a9Copy full SHA for af618a9
.circleci/config.yml
@@ -13,17 +13,18 @@ jobs:
13
# Download and cache dependencies
14
- restore_cache:
15
keys:
16
- - v1-dependencies-{{ checksum "yarn.lock" }}
+ - v2-dependencies-{{ checksum "yarn.lock" }}
17
# fallback to using the latest cache if no exact match is found
18
- - v1-dependencies-
+ - v2-dependencies-
19
20
- run: yarn install
21
22
- save_cache:
23
paths:
24
- node_modules
25
- ~/.cache/yarn
26
- key: v1-dependencies-{{ checksum "yarn.lock" }}
+ - ~/.cache/Cypress
27
+ key: v2-dependencies-{{ checksum "yarn.lock" }}
28
29
# run tests!
30
- run: yarn test
0 commit comments