.travis.yml 355 B

123456789101112131415161718
  1. language: node_js
  2. node_js:
  3. - "0.12"
  4. - "0.10"
  5. - "0.8"
  6. - "iojs"
  7. before_install:
  8. - "npm install -g npm@1.4.x"
  9. script:
  10. - "npm run test-travis"
  11. after_script:
  12. - "npm install coveralls@2.11.x && cat coverage/lcov.info | coveralls"
  13. notifications:
  14. irc:
  15. channels:
  16. - "irc.freenode.org#unshift"
  17. on_success: change
  18. on_failure: change