Skip to content

ci(): add e2e playwright test #18

ci(): add e2e playwright test

ci(): add e2e playwright test #18

Workflow file for this run

name: Playwright Tests
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
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