We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09731cc commit 77331ddCopy full SHA for 77331dd
.circleci/config.yml
@@ -5,7 +5,23 @@ jobs:
5
- image: circleci/node:10.11.0
6
steps:
7
- checkout
8
+
9
+ # Download and cache dependencies
10
+ - restore_cache:
11
+ keys:
12
+ - v1-dependencies-{{ checksum "package.json" }}
13
+ # fallback to using the latest cache if no exact match is found
14
+ - v1-dependencies-
15
16
+ - run: yarn install
17
18
+ - save_cache:
19
+ paths:
20
+ - node_modules
21
+ key: v1-dependencies-{{ checksum "package.json" }}
22
23
- run: |
24
+ yarn
25
yarn run lint
26
yarn run build
27
yarn run test-and-send-cov-to-coveralls
0 commit comments