-
-
Notifications
You must be signed in to change notification settings - Fork 2
44 lines (44 loc) · 1.29 KB
/
playwright.yml
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
44
name: Playwright Tests
on:
workflow_dispatch:
push:
branches: [main]
paths: ["**.json", "**.js", "**.ts", "**.jsx", "**.tsx", "**.yml"]
pull_request:
branches: [main]
paths: ["**.json", "**.js", "**.ts", "**.jsx", "**.tsx", "**.yml"]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest]
timeout-minutes: 5
runs-on: ${{ matrix.os }}
steps:
- name: boost
if: startsWith(matrix.os, 'ubuntu')
run: sudo apt-get update && sudo apt-get install -yq libboost-dev
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- name: Install dependencies
run: |
npm ci
- name: Fix Ubuntu 24.04 issue https://github.com/electron/electron/issues/17972
run: |
file=node_modules/electron/dist/chrome-sandbox
sudo chown root $file
sudo chmod 4755 $file
- name: Build
run: npm run build
- name: Install Playwright Browsers
run: npx playwright install --with-deps chromium
- name: Run Playwright tests
run: xvfb-run npm test
env:
DEBUG: pw:browser*
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 7