.travis.yml 220 B

12345678910111213
  1. language: node_js
  2. node_js:
  3. - "9"
  4. before_install:
  5. - cp ./server/config.example.js ./server/config.js
  6. - cp ./client/config.example.js ./client/config.js
  7. script:
  8. - yarn run lint:nofix
  9. - yarn test
  10. - yarn build