Skip to content

test: add e2e test with playwright #4

test: add e2e test with playwright

test: add e2e test with playwright #4

Workflow file for this run

name: E2E Tests
on:
push:
branches: [ master, dev-zx ]
pull_request:
branches: [ master ]
jobs:
test:
timeout-minutes: 10
runs-on: macos-latest
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