Skip to content

Commit 086322a

Browse files
committed
Update circle config
1 parent 76d431d commit 086322a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: .circleci/config.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@ jobs:
77
- checkout
88
- restore_cache:
99
keys:
10-
- v1-dependencies-{{ checksum "package.json" }}
10+
- dependencies-{{ checksum "package.json" }}
1111
# fallback to using the latest cache if no exact match is found
12-
- v1-dependencies-
12+
- dependencies-
1313
- run:
1414
name: Install
1515
command: yarn install
1616
- save_cache:
1717
paths:
1818
- node_modules
19-
key: v1-dependencies-{{ checksum "package.json" }}
19+
key: dependencies-{{ checksum "package.json" }}
2020
- run:
2121
name: Check Prettier, ESLint, Flow
2222
command: yarn ci-check

0 commit comments

Comments
 (0)