circleci: change cache key

This commit is contained in:
Pooya Parsa 2019-01-13 01:01:37 +03:30
parent c6931a2c92
commit f75a391f9b
1 changed files with 2 additions and 2 deletions

View File

@ -48,7 +48,7 @@ jobs:
# Restore cache
- restore_cache:
key: yarn-{{ checksum "yarn.lock" }}
key: lock-{{ checksum "yarn.lock" }}
# Install dependencies
- run:
@ -57,7 +57,7 @@ jobs:
# Save cache
- save_cache:
key: yarn-{{ checksum "yarn.lock" }}
key: lock-{{ checksum "yarn.lock" }}
paths:
- node_modules
- packages/*/node_modules