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 316B

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