2023-05-11 21:21:28 -04:00
|
|
|
name: e2e-tests
|
|
|
|
|
2023-05-15 22:53:18 -04:00
|
|
|
on:
|
|
|
|
pull_request:
|
2023-05-11 21:21:28 -04:00
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
jobs:
|
2023-05-24 21:33:31 -04:00
|
|
|
files-changed:
|
|
|
|
uses: ./.github/workflows/files-changed.yml
|
|
|
|
|
2023-05-11 21:21:28 -04:00
|
|
|
test-e2e:
|
2023-06-14 11:30:37 -04:00
|
|
|
if: needs.files-changed.outputs.backend == 'true' || needs.files-changed.outputs.frontend == 'true' || needs.files-changed.outputs.actions == 'true'
|
2023-05-24 21:33:31 -04:00
|
|
|
needs: files-changed
|
2023-05-11 21:21:28 -04:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-09-16 11:06:27 -04:00
|
|
|
- uses: actions/checkout@v4
|
2023-12-21 00:31:04 -05:00
|
|
|
- uses: actions/setup-go@v5
|
2023-05-11 21:21:28 -04:00
|
|
|
with:
|
2023-10-17 06:24:54 -04:00
|
|
|
go-version-file: go.mod
|
2023-05-11 21:21:28 -04:00
|
|
|
check-latest: true
|
2023-10-30 03:56:43 -04:00
|
|
|
- uses: actions/setup-node@v4
|
2023-05-11 21:21:28 -04:00
|
|
|
with:
|
|
|
|
node-version: 20
|
|
|
|
- run: make deps-frontend frontend deps-backend
|
|
|
|
- run: npx playwright install --with-deps
|
|
|
|
- run: make test-e2e-sqlite
|
|
|
|
timeout-minutes: 40
|
|
|
|
env:
|
|
|
|
USE_REPO_TEST_DIR: 1
|