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 cd9a1fe commit 0a69840Copy full SHA for 0a69840
.circleci/config.yml
@@ -14,7 +14,7 @@ jobs:
14
# Download and cache dependencies
15
- restore_cache:
16
keys:
17
- - v1-dependencies-{{ checksum "package-lock.json" }}
+ - v1-dependencies-{{ checksum "package.json" }}
18
# fallback to using the latest cache if no exact match is found
19
- v1-dependencies-
20
@@ -23,7 +23,7 @@ jobs:
23
- save_cache:
24
paths:
25
- node_modules
26
- key: v1-dependencies-{{ checksum "package-lock.json" }}
+ key: v1-dependencies-{{ checksum "package.json" }}
27
28
- run: npm run test:vue3
29
0 commit comments