Merge pull request #159 from AnalyticalGraphicsInc/node-8-1.0

Update Travis to Node 8 (1.0 branch)
This commit is contained in:
Shehzan Mohammed 2018-10-26 10:16:54 -04:00 committed by GitHub
commit f339c81494
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

1
.gitignore vendored
View File

@ -1,6 +1,7 @@
# NPM # NPM
node_modules node_modules
npm-debug.log npm-debug.log
package-lock.json
# WebStorm user-specific # WebStorm user-specific
.idea/workspace.xml .idea/workspace.xml

View File

@ -1,7 +1,6 @@
language: node_js language: node_js
node_js: node_js:
- "4" - "8"
- "6"
script: script:
- npm run eslint - npm run eslint
- npm run test -- --failTaskOnError --suppressPassed - npm run test -- --failTaskOnError --suppressPassed
@ -9,4 +8,4 @@ script:
after_success: after_success:
## We only need to run coveralls for one node version (doesn't matter which one). ## We only need to run coveralls for one node version (doesn't matter which one).
## We also ignore publishing failures, since restarting an existing travis build would otherwise break. ## We also ignore publishing failures, since restarting an existing travis build would otherwise break.
- if node --version | grep -q ^v6 ; npm run coverage && npm run coveralls; fi - if node --version | grep -q ^v8 ; npm run coverage && npm run coveralls; fi