We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fc1589 commit 598489dCopy full SHA for 598489d
.circleci/config.yml
@@ -21,17 +21,19 @@ jobs:
21
22
# Download and cache dependencies
23
- restore_cache:
24
+ name: Restore Yarn Package Cache
25
keys:
- - v1-dependencies-{{ checksum "package.json" }}
26
- # fallback to using the latest cache if no exact match is found
27
- - v1-dependencies-
+ - yarn-packages-{{ checksum "yarn.lock" }}
28
29
- - run: yarn install
+ - run:
+ name: Install Dependencies
30
+ command: yarn install --frozen-lockfile
31
32
- save_cache:
33
+ name: Save Yarn Package Cache
34
+ key: yarn-packages-{{ checksum "yarn.lock" }}
35
paths:
- - node_modules
- key: v1-dependencies-{{ checksum "package.json" }}
36
+ - ~/.cache/yarn
37
38
# run tests!
39
- run: yarn lint
0 commit comments