.travis.yml 306 B

12345678910111213141516
  1. sudo: false # http://docs.travis-ci.com/user/workers/container-based-infrastructure/
  2. language: node_js
  3. node_js:
  4. - 0.12
  5. - 4
  6. - 5
  7. - 6
  8. before_install:
  9. - mkdir node_modules; ln -s ../ node_modules/es5-ext
  10. notifications:
  11. email:
  12. - medikoo+es5-ext@medikoo.com
  13. script: "npm test && npm run lint"