feat(test): add an e2e test

This commit is contained in:
Marc Diaz
2026-03-16 11:17:26 -04:00
parent 56988e86e2
commit 9f6ef0f582
10 changed files with 307 additions and 37 deletions
+20
View File
@@ -42,3 +42,23 @@ jobs:
cache: npm
- run: npm ci
- run: npx vite build
e2e:
name: E2E Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- run: npm ci
- run: npx playwright install --with-deps chromium
- run: npm run build-vite
- run: npm run test:e2e
- uses: actions/upload-artifact@v4
if: failure()
with:
name: playwright-report
path: playwright-report/
retention-days: 7