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

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