We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06f90d1 commit 442e034Copy full SHA for 442e034
1 file changed
.travis.yml
@@ -1,11 +1,17 @@
1
language: node_js
2
-node_js:
3
- - 6
4
- - 7
5
- - 8
6
- - 9
7
- - 10
8
-script:
9
- - npm run travis
10
-after_script:
11
- - npm run report-coverage
+jobs:
+ include:
+ - stage: lint
+ node_js: 8
+ script: npm run lint
+ - stage: test
+ node_js:
+ - 6
+ - 7
+ - 8
12
+ - 9
13
+ - 10
14
+ script:
15
+ - npm run travis
16
+ after_script:
17
+ - npm run report-coverage
0 commit comments