.travis.yml 383 B

1234567891011121314151617181920
  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. matrix:
  14. fast_finish: true
  15. notifications:
  16. irc:
  17. channels:
  18. - "irc.freenode.org#bigpipe"
  19. on_success: change
  20. on_failure: change