feat(admin): Playwright E2E каркас — TESTIDS, login/shell/roles, CI mock. Refs EventHub/EventHubFrontAdmin#33 #34 #35
CI / test (push) Failing after 14m2s
CI / push-image (push) Has been skipped
CI / ci-done (push) Failing after 0s

This commit is contained in:
2026-07-14 22:18:34 +03:00
parent 2a32465050
commit 87c6b55e81
19 changed files with 493 additions and 1462 deletions
+14
View File
@@ -47,6 +47,12 @@ jobs:
- run: npm run lint
- run: npm run build
- name: Install Playwright browser
run: npx playwright install --with-deps chromium
- name: E2E mock suite
run: npm run test:e2e
- name: Upload dist for docker job
if: github.event_name == 'push'
uses: actions/upload-artifact@v3
@@ -55,6 +61,14 @@ jobs:
path: dist/
retention-days: 1
- name: Upload Playwright report
if: failure()
uses: actions/upload-artifact@v3
with:
name: playwright-report
path: playwright-report/
retention-days: 7
- name: Mark test complete
id: mark_test
if: success()