.travis.yml 467 B

12345678910111213141516171819202122232425262728293031
  1. language: "node_js"
  2. sudo: false
  3. node_js:
  4. - "0.8"
  5. - "0.10"
  6. - "0.12"
  7. - "1"
  8. - "2"
  9. notifications:
  10. email:
  11. on_success: never
  12. on_failure: never
  13. before_script:
  14. - npm install standard
  15. - standard
  16. script:
  17. - npm install istanbul-harmony
  18. - node --harmony node_modules/.bin/istanbul cover test.js
  19. after_success:
  20. - npm install coveralls
  21. - cat ./coverage/lcov.info | coveralls
  22. matrix:
  23. allow_failures:
  24. - node_js: "0.8"
  25. - node_js: "0.10"