.travis.yml 335 B

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