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

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