選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

pull-e2e-tests.yml 877B

1234567891011121314151617181920212223242526272829303132
  1. name: e2e-tests
  2. on:
  3. pull_request:
  4. concurrency:
  5. group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
  6. cancel-in-progress: true
  7. jobs:
  8. files-changed:
  9. uses: ./.github/workflows/files-changed.yml
  10. test-e2e:
  11. if: needs.files-changed.outputs.backend == 'true' || needs.files-changed.outputs.frontend == 'true' || needs.files-changed.outputs.actions == 'true'
  12. needs: files-changed
  13. runs-on: ubuntu-latest
  14. steps:
  15. - uses: actions/checkout@v4
  16. - uses: actions/setup-go@v4
  17. with:
  18. go-version: "~1.21"
  19. check-latest: true
  20. - uses: actions/setup-node@v3
  21. with:
  22. node-version: 20
  23. - run: make deps-frontend frontend deps-backend
  24. - run: npx playwright install --with-deps
  25. - run: make test-e2e-sqlite
  26. timeout-minutes: 40
  27. env:
  28. USE_REPO_TEST_DIR: 1