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 71204c0 commit 409515fCopy full SHA for 409515f
.travis.yml
@@ -1,14 +1,27 @@
1
sudo: false
2
language: node_js
3
node_js:
4
+ - '9'
5
- '8'
6
- '7'
7
- '6'
8
- '5'
9
- '4'
-before_script:
10
+before_install:
11
+ - 'nvm install-latest-npm'
12
+script:
13
+ - 'if [ -n "${PRETEST-}" ]; then npm run pretest ; fi'
14
+ - 'if [ -n "${TEST-}" ]; then npm run unit-test ; fi'
15
+env:
16
+ - TEST=true
17
after_success:
- - npm run coveralls
18
+ - 'if [ -n "${TEST-}" ]; then npm run coveralls ; fi'
19
matrix:
20
fast_finish: true
21
+ include:
22
+ - node_js: 'lts/*'
23
+ env: PRETEST=true
24
allow_failures:
25
+ - node_js: '9'
26
+ - node_js: '7'
27
+ - node_js: '5'
0 commit comments