.travis.yml 444 B

12345678910111213141516171819
  1. language: node_js
  2. sudo: false
  3. node_js:
  4. - "0.10"
  5. - "0.12"
  6. - "iojs"
  7. - "4"
  8. - "5"
  9. - "6"
  10. - "7"
  11. before_script:
  12. - npm install -g gulp
  13. # script: grunt
  14. # Run test script, depending on istanbul install
  15. # - "test -n $(npm -ps ls istanbul) || npm test"
  16. # - "test -z $(npm -ps ls istanbul) || npm run-script test-travis"
  17. #after_script:
  18. # - "test -e ./coverage/lcov.info && npm install coveralls@2 && cat ./coverage/lcov.info | coveralls"