-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (28 loc) · 728 Bytes
/
e2e.yml
File metadata and controls
36 lines (28 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: E2E Tests
on:
pull_request:
push:
branches: [main]
permissions:
contents: read
jobs:
e2e:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: '24'
cache: npm
cache-dependency-path: package-lock.json
- run: npm ci
- name: Install Playwright browsers
run: npx playwright install chromium --with-deps
working-directory: app/packages/web
- run: npm run app:test:e2e
- uses: actions/upload-artifact@v4
if: failure()
with:
name: playwright-report
path: app/packages/web/playwright-report/
retention-days: 30