Skip to content

Commit 2f8bac2

Browse files
build: use Circle CI
1 parent 8bd1ddd commit 2f8bac2

File tree

3 files changed

+5909
-10286
lines changed

3 files changed

+5909
-10286
lines changed

.circleci/config.yml

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
step-restore-cache: &step-restore-cache
2+
restore_cache:
3+
keys:
4+
- v1-dependencies-{{ arch }}-{{ checksum "yarn.lock" }}
5+
- v1-dependencies-{{ arch }}
6+
7+
steps-test: &steps-test
8+
steps:
9+
- checkout
10+
- *step-restore-cache
11+
- run: yarn
12+
- save_cache:
13+
paths:
14+
- node_modules
15+
key: v1-dependencies-{{ arch }}-{{ checksum "yarn.lock" }}
16+
- run: yarn test
17+
18+
version: 2.1
19+
orbs:
20+
win: circleci/[email protected]
21+
jobs:
22+
test-linux-14:
23+
docker:
24+
- image: circleci/node:14
25+
<<: *steps-test
26+
27+
workflows:
28+
version: 2
29+
test_and_release:
30+
jobs:
31+
- test-linux-14
32+
33+

0 commit comments

Comments
 (0)