.travis.yml 339 B

12345678910111213141516171819202122
  1. language: node_js
  2. node_js:
  3. - "14"
  4. branches:
  5. only:
  6. - main
  7. cache:
  8. directories:
  9. - node_modules
  10. script:
  11. - npm run test
  12. - npm run lint
  13. - npm run build
  14. deploy:
  15. provider: pages
  16. skip_cleanup: true
  17. local_dir: out
  18. token: $GITHUB_TOKEN
  19. target_branch: gh-pages
  20. keep_history: true
  21. on:
  22. branch: main