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 6f10898 commit 8ef443fCopy full SHA for 8ef443f
.travis.yml
@@ -1,13 +1,25 @@
1
language: node_js
2
3
-node_js:
4
- - stable
5
- - lts/*
6
- - 6
+jobs:
+ fast_finish: true
+ include:
+ - stage: Lint
7
+ env: SCRIPT=lint
8
+ node_js: 'stable'
9
+ - &test
10
+ stage: 'Test'
11
+ env: SCRIPT=test
12
13
+ - <<: *test
14
+ node_js: 'lts/*'
15
16
+ node_js: 6
17
+
18
+script: npm run $SCRIPT
19
20
after_success:
21
- npm i coveralls
- - cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
22
+ - cat ./coverage/lcov.info | $(npm bin)/coveralls
23
24
notifications:
25
email: false
0 commit comments