2024-01-03 15:33:47 +01:00
|
|
|
name: e2e
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- Makefile
|
2024-07-08 15:11:29 +02:00
|
|
|
- playwright.config.js
|
2024-01-03 15:33:47 +01:00
|
|
|
- .forgejo/workflows/e2e.yml
|
|
|
|
- tests/e2e/**
|
2024-07-08 15:11:29 +02:00
|
|
|
- web_src/js/**
|
2024-09-05 19:21:21 +02:00
|
|
|
- web_src/css/form.css
|
|
|
|
- templates/webhook/shared-settings.tmpl
|
|
|
|
- templates/org/team/new.tmpl
|
2024-01-03 15:33:47 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
test-e2e:
|
|
|
|
if: ${{ !startsWith(vars.ROLE, 'forgejo-') }}
|
|
|
|
runs-on: docker
|
|
|
|
container:
|
2024-09-12 03:09:44 +02:00
|
|
|
image: 'code.forgejo.org/oci/playwright:latest'
|
2024-01-03 15:33:47 +01:00
|
|
|
steps:
|
|
|
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
|
|
|
- uses: https://code.forgejo.org/actions/setup-go@v4
|
|
|
|
with:
|
2024-08-03 09:55:09 +02:00
|
|
|
go-version-file: "go.mod"
|
2024-01-03 15:33:47 +01:00
|
|
|
- run: |
|
|
|
|
git config --add safe.directory '*'
|
|
|
|
chown -R forgejo:forgejo .
|
|
|
|
- run: |
|
|
|
|
su forgejo -c 'make deps-frontend frontend deps-backend'
|
2024-08-25 14:52:21 +02:00
|
|
|
- run: |
|
|
|
|
su forgejo -c 'make backend'
|
2024-01-03 15:33:47 +01:00
|
|
|
- run: |
|
2024-01-08 15:58:44 +01:00
|
|
|
su forgejo -c 'make generate test-e2e-sqlite'
|
2024-01-03 15:33:47 +01:00
|
|
|
timeout-minutes: 40
|
|
|
|
env:
|
|
|
|
USE_REPO_TEST_DIR: 1
|