c1e15681db
* upgrade yargs and async dependencies. were breaking change, but no impact according the tests * upgrade yargs and package-lock.json * add node 8 to the tested versions * add node 8 to the allowed failures as requested * add node 9 to travis build as acceptable failure and remove node 7
27 lines
348 B
YAML
27 lines
348 B
YAML
sudo: false
|
|
language: node_js
|
|
node_js:
|
|
- "0.10"
|
|
- "0.12"
|
|
- "4"
|
|
- "6"
|
|
- "8"
|
|
- "9"
|
|
|
|
script:
|
|
- npm test
|
|
|
|
after_script:
|
|
- npm run cover
|
|
- npm run coveralls
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- node_js: "0.10"
|
|
- node_js: "0.12"
|
|
- node_js: "9"
|
|
|
|
notifications:
|
|
email:
|
|
- travis@nodejitsu.com
|
|
irc: "irc.freenode.org#nodejitsu"
|