.travis.yml 664 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. language: node_js
  2. node_js:
  3. - "13"
  4. - "12"
  5. - "11"
  6. - "10"
  7. - "9"
  8. - "8"
  9. - "7"
  10. - "6"
  11. - "5"
  12. - "4"
  13. - "iojs-v3"
  14. - "iojs-v2"
  15. - "iojs-v1"
  16. - "0.12"
  17. import:
  18. - ljharb/travis-ci:node/latest-npm.yml
  19. - ljharb/travis-ci:node/greenkeeper.yml
  20. - ljharb/travis-ci:node/dependabot.yml
  21. script: 'npm run tests-only'
  22. sudo: false
  23. env:
  24. - TEST=true
  25. matrix:
  26. fast_finish: true
  27. include:
  28. - node_js: "lts/*"
  29. env: PRETEST=true
  30. script: 'npm run pretest'
  31. allow_failures:
  32. - node_js: "9"
  33. - node_js: "7"
  34. - node_js: "5"
  35. - node_js: "iojs-v3"
  36. - node_js: "iojs-v2"
  37. - node_js: "iojs-v1"
  38. - env: TEST=true ALLOW_FAILURE=true