Skip to content

Commit fc4bd23

Browse files
authored
chore: Upgrade to circleci v2 (#102)
1 parent c576c60 commit fc4bd23

File tree

2 files changed

+57
-11
lines changed

2 files changed

+57
-11
lines changed

.circleci/config.yml

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
version: 2
2+
jobs:
3+
test_with_node_6:
4+
docker:
5+
- image: circleci/node:6
6+
steps:
7+
- checkout
8+
- run:
9+
name: Install dependencies
10+
command: npm install
11+
- run:
12+
name: Test
13+
command: npm test
14+
test_with_node_8:
15+
docker:
16+
- image: circleci/node:8
17+
steps:
18+
- checkout
19+
- run:
20+
name: Install dependencies
21+
command: npm install
22+
- run:
23+
name: Test
24+
command: npm test
25+
test_with_node_9:
26+
docker:
27+
- image: circleci/node:9
28+
steps:
29+
- checkout
30+
- run:
31+
name: Install dependencies
32+
command: npm install
33+
- run:
34+
name: Test
35+
command: npm test
36+
test_with_node_10:
37+
docker:
38+
- image: circleci/node:10
39+
steps:
40+
- checkout
41+
- run:
42+
name: Install dependencies
43+
command: npm install
44+
- run:
45+
name: Test
46+
command: npm test
47+
- run:
48+
name: Deploy coverage
49+
command: bash <(curl -s https://codecov.io/bash)
50+
workflows:
51+
version: 2
52+
test_all:
53+
jobs:
54+
- test_with_node_6
55+
- test_with_node_8
56+
- test_with_node_9
57+
- test_with_node_10

circle.yml

-11
This file was deleted.

0 commit comments

Comments
 (0)