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 c447b40 commit dd098cbCopy full SHA for dd098cb
.circleci/config.yml
@@ -25,7 +25,11 @@ jobs:
25
fi
26
27
- restore_cache:
28
- key: node-modules-{{ checksum "yarn.lock" }}
+ name: Restore node_modules cache
29
+ keys:
30
+ - v1-node-{{ arch }}-{{ .Branch }}-{{ checksum "yarn.lock" }}
31
+ - v1-node-{{ arch }}-{{ .Branch }}-
32
+ - v1-node-{{ arch }}-
33
34
- run:
35
name: Nodejs Version
@@ -40,6 +44,7 @@ jobs:
40
44
command: ./scripts/circleci/test_entry_point.sh
41
45
42
46
- save_cache:
43
47
+ name: Save node_modules cache
48
+ key: v1-node-{{ arch }}-{{ .Branch }}-{{ checksum "yarn.lock" }}
49
paths:
50
- node_modules
0 commit comments