Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
- checkout
- restore_cache:
keys:
- v1-dependencies-
- v1-dependent-
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- v1-dependent-

- run: npm install
- run:
Expand All @@ -25,7 +25,7 @@ jobs:
- save_cache:
paths:
- node_modules
key: v1-dependencies-
key: v1-dependent-

- persist_to_workspace:
root: ~/repo
Expand Down