.travis.yml 386 B

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