Skip to content

Commit af618a9

Browse files
author
Guillaume Chau
committed
test: fix cypress cache
1 parent 0133319 commit af618a9

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.circleci/config.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,18 @@ jobs:
1313
# Download and cache dependencies
1414
- restore_cache:
1515
keys:
16-
- v1-dependencies-{{ checksum "yarn.lock" }}
16+
- v2-dependencies-{{ checksum "yarn.lock" }}
1717
# fallback to using the latest cache if no exact match is found
18-
- v1-dependencies-
18+
- v2-dependencies-
1919

2020
- run: yarn install
2121

2222
- save_cache:
2323
paths:
2424
- node_modules
2525
- ~/.cache/yarn
26-
key: v1-dependencies-{{ checksum "yarn.lock" }}
26+
- ~/.cache/Cypress
27+
key: v2-dependencies-{{ checksum "yarn.lock" }}
2728

2829
# run tests!
2930
- run: yarn test

0 commit comments

Comments
 (0)