1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 11:22:43 +02:00

ci: Use cache version from circle environment var (#6286)

This commit is contained in:
kumavis 2019-03-12 19:49:06 +08:00 committed by Whymarrh Whitby
parent daae155ce2
commit 1985dcc494

View File

@ -87,7 +87,7 @@ jobs:
- checkout
- restore_cache:
keys:
- v1.0-dependency-cache-{{ checksum "package-lock.json" }}
- v{{ .Environment.CACHE_VERSION }}-dependency-cache-{{ checksum "package-lock.json" }}
- run:
name: Install npm 6 + deps via npm
command: |
@ -97,7 +97,7 @@ jobs:
paths:
- node_modules
- save_cache:
key: v1.0-dependency-cache-{{ checksum "package-lock.json" }}
key: v{{ .Environment.CACHE_VERSION }}-dependency-cache-{{ checksum "package-lock.json" }}
paths:
- node_modules