.travis.yml 343 B

123456789101112131415161718192021222324252627
  1. language: node_js
  2. node_js:
  3. - 8
  4. - 9
  5. - 10
  6. - 11
  7. - 12
  8. env:
  9. - INSTALL=yarn
  10. - INSTALL=npm
  11. jobs:
  12. exclude:
  13. - node_js: 9
  14. env: INSTALL=yarn
  15. matrix:
  16. fast_finish: true
  17. install:
  18. - if [ "yarn" == $INSTALL ]; then yarn install; fi
  19. - if [ "npm" == $INSTALL ]; then npm install; fi
  20. script:
  21. - echo 'Tests must be configured'