Skip to content
This repository has been archived by the owner on Mar 23, 2023. It is now read-only.

Commit

Permalink
update circle cache settings
Browse files Browse the repository at this point in the history
  • Loading branch information
jescalan committed Dec 12, 2019
1 parent e9a5c0f commit d3e2c6c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ jobs:
- checkout
- restore_cache:
keys:
- v3-dependencies-{{ checksum "package.json" }}
- v3-dependencies-
- v1-linux-dependencies-{{ checksum "package.json" }}
- v1-linux-dependencies-
- run: npm install
- save_cache:
paths:
- node_modules
key: v3-dependencies-{{ checksum "package.json" }}
key: v1-linux-dependencies-{{ checksum "package.json" }}
- run: npm test
windows:
executor: win/vs2019
Expand All @@ -25,13 +25,13 @@ jobs:
- checkout
- restore_cache:
keys:
- v3-dependencies-{{ checksum "package.json" }}
- v3-dependencies-
- v1-windows-dependencies-{{ checksum "package.json" }}
- v1-windows-dependencies-
- run: npm install
- save_cache:
paths:
- node_modules
key: v3-dependencies-{{ checksum "package.json" }}
key: v1-windows-dependencies-{{ checksum "package.json" }}
- run: npm test
workflows:
version: 2
Expand Down

0 comments on commit d3e2c6c

Please sign in to comment.