Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,16 @@ jobs:
run: npm run test
- name: Build frontend
run: npm run build
- name: Run end-to-end tests
run: npm run e2e
continue-on-error: true
- name: Upload Playwright HTML report
if: always()
uses: actions/upload-artifact@v4
with:
name: playwright-report-${{ matrix.node-version }}
path: frontend/playwright-report
retention-days: 30

frontend-checks:
needs: [frontend-run-checks]
Expand Down
5 changes: 5 additions & 0 deletions frontend/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ export default defineConfig({
snapshotPathTemplate:
"{testDir}/__snapshots__/{testFilePath}/{arg}{ext}",

reporter: [
['html', { outputFolder: 'playwright-report' }],
['list'],
],

use: {
baseURL: 'http://127.0.0.1:5173',
headless: true,
Expand Down
Loading