2023-05-12 01:21:28 +00:00
|
|
|
name: e2e-tests
|
|
|
|
|
2023-05-16 02:53:18 +00:00
|
|
|
on:
|
|
|
|
pull_request:
|
2023-05-12 01:21:28 +00:00
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
jobs:
|
2023-05-25 01:33:31 +00:00
|
|
|
files-changed:
|
|
|
|
uses: ./.github/workflows/files-changed.yml
|
|
|
|
|
2023-05-12 01:21:28 +00:00
|
|
|
test-e2e:
|
2023-06-14 15:30:37 +00:00
|
|
|
if: needs.files-changed.outputs.backend == 'true' || needs.files-changed.outputs.frontend == 'true' || needs.files-changed.outputs.actions == 'true'
|
2023-05-25 01:33:31 +00:00
|
|
|
needs: files-changed
|
2023-05-12 01:21:28 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-09-16 15:06:27 +00:00
|
|
|
- uses: actions/checkout@v4
|
2023-12-21 05:31:04 +00:00
|
|
|
- uses: actions/setup-go@v5
|
2023-05-12 01:21:28 +00:00
|
|
|
with:
|
2023-10-17 10:24:54 +00:00
|
|
|
go-version-file: go.mod
|
2023-05-12 01:21:28 +00:00
|
|
|
check-latest: true
|
2023-10-30 07:56:43 +00:00
|
|
|
- uses: actions/setup-node@v4
|
2023-05-12 01:21:28 +00:00
|
|
|
with:
|
|
|
|
node-version: 20
|
2024-04-19 03:29:08 +00:00
|
|
|
cache: npm
|
|
|
|
cache-dependency-path: package-lock.json
|
2023-05-12 01:21:28 +00:00
|
|
|
- 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
|