We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76d431d commit 086322aCopy full SHA for 086322a
.circleci/config.yml
@@ -7,16 +7,16 @@ jobs:
7
- checkout
8
- restore_cache:
9
keys:
10
- - v1-dependencies-{{ checksum "package.json" }}
+ - dependencies-{{ checksum "package.json" }}
11
# fallback to using the latest cache if no exact match is found
12
- - v1-dependencies-
+ - dependencies-
13
- run:
14
name: Install
15
command: yarn install
16
- save_cache:
17
paths:
18
- node_modules
19
- key: v1-dependencies-{{ checksum "package.json" }}
+ key: dependencies-{{ checksum "package.json" }}
20
21
name: Check Prettier, ESLint, Flow
22
command: yarn ci-check
0 commit comments