E2E test is not yet implemented

Because we will need to make another plan.

Signed-off-by: Kenneth Obsequio <k80308392@gmail.com>
This commit is contained in:
2026-09-22 01:50:22 +08:00
parent c66e65d718
commit b289382747
19 changed files with 1 additions and 1190 deletions
-34
View File
@@ -1,34 +0,0 @@
name: E2E tests
on:
pull_request: {}
push:
branches: [main, qas]
workflow_dispatch: {}
jobs:
e2e:
runs-on: [self-hosted, ux]
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: pnpm install --frozen-lockfile=false
- name: Install Playwright Firefox
run: pnpm --filter e2e exec playwright install firefox --with-deps
- name: Run e2e suite
run: pnpm --filter e2e test
- name: Upload Playwright report
if: failure()
uses: actions/upload-artifact@v4
with:
name: playwright-report
path: apps/e2e/playwright-report/
retention-days: 14
- name: Sweep QA-TEST fixtures
if: always()
run: node -e "require('./apps/e2e/helpers/cleanup').cleanupQaTestFixtures().then(r => console.log('Removed:', r)).catch(e => { console.error(e); process.exit(0); })"