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 408a64e commit 60ebd5fCopy full SHA for 60ebd5f
.circleci/config.yml
@@ -13,18 +13,18 @@ jobs:
13
# Download and cache dependencies
14
- restore_cache:
15
keys:
16
- - v2-dependencies-{{ checksum "yarn.lock" }}
+ - v3-dependencies-{{ checksum "yarn.lock" }}
17
# fallback to using the latest cache if no exact match is found
18
- - v2-dependencies-
+ - v3-dependencies-
19
20
- - run: yarn install
+ - run: yarn install --pure-lockfile
21
22
- save_cache:
23
paths:
24
- node_modules
25
- ~/.cache/yarn
26
- ~/.cache/Cypress
27
- key: v2-dependencies-{{ checksum "yarn.lock" }}
+ key: v3-dependencies-{{ checksum "yarn.lock" }}
28
29
# run tests!
30
- run: yarn test
0 commit comments