.travis.yml 307 B

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