Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
test(ci): pure-lockfile
  • Loading branch information
Guillaume Chau committed Oct 28, 2019
1 parent 2e1b0a3 commit 7e63da1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Expand Up @@ -13,18 +13,18 @@ jobs:
# Download and cache dependencies
- restore_cache:
keys:
- v2-dependencies-{{ checksum "yarn.lock" }}
- v3-dependencies-{{ checksum "yarn.lock" }}
# fallback to using the latest cache if no exact match is found
- v2-dependencies-
- v3-dependencies-

- run: yarn install
- run: yarn install --pure-lockfile

- save_cache:
paths:
- node_modules
- ~/.cache/yarn
- ~/.cache/Cypress
key: v2-dependencies-{{ checksum "yarn.lock" }}
key: v3-dependencies-{{ checksum "yarn.lock" }}

# run tests!
- run: yarn test
Expand Down

0 comments on commit 7e63da1

Please sign in to comment.