Browse Source
Dont use branch in CI dependencies cache key
master
meriadec
7 years ago
No known key found for this signature in database
GPG Key ID: 1D2FC2305E2CB399
1 changed files with
2 additions and
2 deletions
-
.circleci/config.yml
|
|
@ -15,13 +15,13 @@ jobs: |
|
|
|
- restore_cache: |
|
|
|
name: Restore Yarn Package Cache |
|
|
|
keys: |
|
|
|
- v1-yarn-packages-{{ .Branch }}-{{ checksum "yarn.lock" }} |
|
|
|
- v1-yarn-packages-{{ checksum "yarn.lock" }} |
|
|
|
- run: |
|
|
|
name: Install Dependencies |
|
|
|
command: bash scripts/install-ci-deps.sh |
|
|
|
- save_cache: |
|
|
|
name: Save Yarn Package Cache |
|
|
|
key: v1-yarn-packages-{{ .Branch }}-{{ checksum "yarn.lock" }} |
|
|
|
key: v1-yarn-packages-{{ checksum "yarn.lock" }} |
|
|
|
paths: |
|
|
|
- node_modules/ |
|
|
|
- run: |
|
|
|