Skip to content

Commit

Permalink
[WIP] Test up to Nodejs 8 with Travis
Browse files Browse the repository at this point in the history
Just adding more Node versions to TarvisCI, but allowing failures with some versions for now.
  • Loading branch information
simison authored Jul 24, 2017
1 parent 55ef714 commit 1d6f893
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
language: node_js
node_js:
- "0.10"
- "0.11"
- "0.12"
- "4"
- "6"
- "8"
matrix:
fast_finish: true
allow_failures:
- node_js: '4'
- node_js: '6'
- node_js: '8'
script: "npm run-script test-travis"
after_script: "npm install coveralls@2 && cat ./coverage/lcov.info | coveralls"

0 comments on commit 1d6f893

Please sign in to comment.