Skip to content
This repository was archived by the owner on Oct 1, 2020. It is now read-only.

Commit 5993de9

Browse files
committed
update to circle v2
1 parent f590793 commit 5993de9

File tree

1 file changed

+24
-9
lines changed

1 file changed

+24
-9
lines changed

circle.yml

Lines changed: 24 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,24 @@
1-
machine:
2-
node:
3-
# need Node 8 for latest semantic release
4-
version: 8
5-
test:
6-
override:
7-
- npm test
8-
post:
9-
- npm run semantic-release || true
1+
version: 2
2+
3+
workflows:
4+
version: 2
5+
tests:
6+
jobs:
7+
- test
8+
9+
jobs:
10+
test:
11+
steps:
12+
- checkout
13+
14+
- run:
15+
name: Install dependencies
16+
command: npm install
17+
18+
- run:
19+
name: Lint code
20+
command: npm run lint
21+
22+
- run:
23+
name: Run tests
24+
command: npm test

0 commit comments

Comments
 (0)