.travis.yml 230 B

12345678910111213
  1. language: node_js
  2. node_js:
  3. - "12"
  4. cache:
  5. yarn: true
  6. directories:
  7. - node_modules
  8. before_install:
  9. - curl -o- -L https://yarnpkg.com/install.sh | bash
  10. - export PATH=$HOME/.yarn/bin:$PATH
  11. script:
  12. - yarn
  13. - yarn build