Skip to content

Commit 557c1f6

Browse files
committed
Update CircleCI config
1 parent 0b98d32 commit 557c1f6

File tree

2 files changed

+19
-3
lines changed

2 files changed

+19
-3
lines changed

.circleci/config.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
version: 2
2+
3+
jobs:
4+
build:
5+
docker:
6+
- image: circleci/node:10
7+
steps:
8+
- checkout
9+
- restore_cache:
10+
keys:
11+
- yarn-packages-v1-{{ .Branch }}-{{ checksum "yarn.lock" }}
12+
- yarn-packages-v1-{{ .Branch }}-
13+
- yarn-packages-v1-
14+
- run: yarn install
15+
- save_cache:
16+
paths:
17+
- ~/.cache/yarn
18+
key: yarn-packages-v1-{{ .Branch }}-{{ checksum "yarn.lock" }}
19+
- run: yarn test

circle.yml

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)