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
node_modules
npm-debug.log
package-lock.json
# WebStorm user-specific
.idea/workspace.xml

View File

@ -1,7 +1,6 @@
language: node_js
node_js:
- "4"
- "6"
- "8"
script:
- npm run eslint
- npm run test -- --failTaskOnError --suppressPassed
@ -9,4 +8,4 @@ script:
after_success:
## 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.
- 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