We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 457899f commit 2b4eb64Copy full SHA for 2b4eb64
.circleci/config.yml
@@ -1,17 +1,31 @@
1
version: 2
2
3
+shared: &shared
4
+ steps:
5
+ - checkout
6
+ - run: yarn
7
+ - run: yarn test:ci
8
+
9
jobs:
- test:
10
+ test-node-10:
11
+ docker:
12
+ - image: node:10
13
+ <<: *shared
14
15
+ test-node-12:
16
docker:
- - image: node:8
- steps:
- - checkout
17
+ - image: node:12
18
19
- - run: yarn
- - run: yarn test:ci
20
+ test-node-13:
21
22
+ - image: node:13
23
24
25
workflows:
26
- test-publish:
27
+ test:
28
- - test
29
+ - test-node-10
30
+ - test-node-12
31
+ - test-node-13
0 commit comments