mirror of
https://github.com/go-gitea/gitea.git
synced 2026-05-13 21:56:10 +02:00
Split playwright install back into separate make target
Restore make playwright as a separate target so CI can run it as its own step before test-e2e. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
03f05abb67
commit
4a0366d696
1
.github/workflows/pull-e2e-tests.yml
vendored
1
.github/workflows/pull-e2e-tests.yml
vendored
@ -51,5 +51,6 @@ jobs:
|
||||
INSTALL_LOCK = true
|
||||
EOF
|
||||
- run: ./gitea web &
|
||||
- run: make playwright
|
||||
- run: E2E_URL=http://localhost:3000 make test-e2e
|
||||
timeout-minutes: 10
|
||||
|
||||
7
Makefile
7
Makefile
@ -553,9 +553,12 @@ test-mssql\#%: integrations.mssql.test generate-ini-mssql
|
||||
.PHONY: test-mssql-migration
|
||||
test-mssql-migration: migrations.mssql.test migrations.individual.mssql.test
|
||||
|
||||
.PHONY: test-e2e
|
||||
test-e2e: deps-frontend
|
||||
.PHONY: playwright
|
||||
playwright: deps-frontend
|
||||
@$(NODE_VARS) pnpm exec playwright install --with-deps chromium $(PLAYWRIGHT_FLAGS)
|
||||
|
||||
.PHONY: test-e2e
|
||||
test-e2e: playwright
|
||||
EXECUTABLE=$(EXECUTABLE) ./tools/test-e2e.sh $(E2E_FLAGS)
|
||||
|
||||
.PHONY: bench-sqlite
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user