.travis.yml 284 B

12345678910111213141516171819202122
  1. language: node_js
  2. node_js:
  3. - 10
  4. - 11
  5. - 12
  6. - 13
  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'