.travis.yml 191 B

12345678910111213141516
  1. language: node_js
  2. sudo: false
  3. node_js:
  4. - 4
  5. - 5
  6. - 6
  7. - 7
  8. - 8
  9. install:
  10. - npm install
  11. - npm update
  12. script:
  13. - npm test
  14. after_success:
  15. - bash <(curl -s https://codecov.io/bash)