Skip to content

Commit 77331dd

Browse files
Update CircleCI config
1 parent 09731cc commit 77331dd

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.circleci/config.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,23 @@ jobs:
55
- image: circleci/node:10.11.0
66
steps:
77
- 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+
823
- run: |
24+
yarn
925
yarn run lint
1026
yarn run build
1127
yarn run test-and-send-cov-to-coveralls

0 commit comments

Comments
 (0)