There was an error while loading. Please reload this page.
1 parent 6244054 commit b158aaaCopy full SHA for b158aaa
1 file changed
.circleci/config.yml
@@ -27,7 +27,8 @@ jobs:
27
- &restore-cache
28
restore_cache:
29
keys:
30
- - &cache-key node-deps-{{ arch }}-{{ checksum "package.json" }}
+ # Caching node_modules means we can't share it across node versions
31
+ - &cache-key node-deps-{{ arch }}-<< parameters.node-version >>-{{ checksum "package.json" }}
32
- &install
33
run: npm install # no npm ci, because no package-lock.json, because this is a lbirary
34
- &save-cache
0 commit comments