Skip to content

test: add e2e test with playwright #6

test: add e2e test with playwright

test: add e2e test with playwright #6

Workflow file for this run

name: E2E Tests
on:
push:
branches: [ master, dev-zx ]
pull_request:
branches: [ master ]
jobs:
test:
timeout-minutes: 10
strategy:
matrix:
os: [ macos-latest, windows-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm i
- name: Install Playwright Browser
run: npx playwright install --with-deps chromium
- name: Run Playwright tests
run: npm run test:e2e