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

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