Skip to content

feat(build): adopt electron-vite for dev + build pipeline #151

feat(build): adopt electron-vite for dev + build pipeline

feat(build): adopt electron-vite for dev + build pipeline #151

Workflow file for this run

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