nconf-lite/.travis.yml
Adrien Becchis c1e15681db Upgrading dependencies (#280)
* 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
2017-11-06 11:15:12 -05:00

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"