.travis.yml 278 B

123456789101112131415161718192021
  1. language: node_js
  2. node_js:
  3. - "lts/*"
  4. - "17"
  5. - "16"
  6. - "15"
  7. - "14"
  8. - "13"
  9. - "12"
  10. - "10"
  11. - "8"
  12. - "7"
  13. - "6"
  14. - "5"
  15. - "4"
  16. - "0.11"
  17. - "0.10"
  18. - "0.12"
  19. before_install:
  20. - if [[ `npm -v` < 5 ]]; then npm cache clean; fi
  21. - if [[ `npm -v` != 3* ]]; then npm i -g npm@3; fi