-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (34 loc) · 1005 Bytes
/
integration.yml
File metadata and controls
43 lines (34 loc) · 1005 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
37
38
39
40
41
42
43
name: Integration Tests
on:
pull_request:
push:
branches: [main]
permissions:
contents: read
jobs:
integration:
runs-on: ubuntu-latest
timeout-minutes: 20
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 system dependencies
run: DEBIAN_FRONTEND=noninteractive npx playwright install-deps chromium
working-directory: app/packages/web
timeout-minutes: 5
- name: Install Playwright ffmpeg
run: npx playwright install ffmpeg
working-directory: app/packages/web
timeout-minutes: 3
- run: npm run app:test:integration
- uses: actions/upload-artifact@v4
if: failure()
with:
name: integration-playwright-report
path: app/packages/web/playwright-report/
retention-days: 30