Regression Test & GiteaAction workflow
CI / regression (push) Failing after 2m36s

This commit is contained in:
Zakaria
2026-06-06 12:43:16 -04:00
parent 7dbefd49dc
commit 2db12722c6
6 changed files with 852 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
name: CI
on:
push:
pull_request:
jobs:
regression:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install dependencies
run: npm ci
- name: Install Playwright browser
run: npx playwright install --with-deps chromium
- name: Run regression tests
run: npm test
- name: Upload Playwright report
if: failure()
uses: actions/upload-artifact@v3
with:
name: playwright-report
path: playwright-report/
- name: Upload Playwright test results
if: failure()
uses: actions/upload-artifact@v3
with:
name: test-results
path: test-results/