fix: clears cache hopefully

This commit is contained in:
Kobi Gurkan
2019-05-11 21:38:14 +03:00
parent bb1b0bf0fb
commit 681e272189

View File

@@ -22,16 +22,16 @@ jobs:
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
- v1.1-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- v1.1-dependencies-
- run: npm install
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
key: v1.1-dependencies-{{ checksum "package.json" }}
# run tests!
- run: cd scripts && ./ci.sh