.travis.yml 282 B

123456789101112131415161718192021
  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. install:
  13. - if [ "yarn" == $INSTALL ]; then yarn install; fi
  14. - if [ "npm" == $INSTALL ]; then npm install; fi
  15. script:
  16. - echo 'Tests must be configured'