You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.travis.yml 292B

12345678910111213141516171819202122
  1. sudo: false
  2. language: node_js
  3. node_js:
  4. - "4"
  5. - "5"
  6. - "6"
  7. - "7"
  8. - "8"
  9. install:
  10. - PATH="`npm bin`:`npm bin -g`:$PATH"
  11. # Install dependencies and build
  12. - npm install
  13. script:
  14. # Output useful info for debugging
  15. - node --version
  16. - npm --version
  17. # Run tests
  18. - npm test