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 f6e935d commit e44e617Copy full SHA for e44e617
.circleci/config.yml
@@ -20,19 +20,18 @@ jobs:
20
- checkout
21
# Download and cache dependencies
22
- restore_cache:
23
- key: dependency-cache-{{ checksum "package.json" }}
+ key: v1-dependencies-{{ checksum "package.json" }}
24
# fallback to using the latest cache if no exact match is found
25
- - dependency-cache-
+ - v1-dependencies-
26
27
- # install node_modules
28
- run:
29
command: npm install
30
name: install npm packages
31
32
- save_cache:
33
paths:
34
- node_modules
35
36
37
# run tests!
38
0 commit comments