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 f0c3227 commit 27f75a9Copy full SHA for 27f75a9
.circleci/config.yml
@@ -1,16 +1,36 @@
1
+workflows:
2
+ version: 2
3
+ node-multi-build:
4
+ jobs:
5
+ - node-v6
6
+ - node-v8
7
+ - node-latest
8
+
9
version: 2
10
jobs:
- build:
11
+ node-base: &node-base
12
docker:
- - image: circleci/node:8.9.1
13
+ - image: node
14
steps:
15
- checkout
16
- run:
- name: install
17
+ name: Install dependencies
18
command: yarn --frozen-lockfile
19
- name: test
20
+ name: Test
21
command: yarn test-ci
22
23
name: coverage
24
command: ./node_modules/.bin/coveralls < coverage/lcov.info
25
+ node-v6:
26
+ <<: *node-base
27
+ docker:
28
+ - image: node:6
29
+ node-v8:
30
31
32
+ - image: node:8
33
+ node-latest:
34
35
36
+ - image: node:latest
0 commit comments