Skip to content

feat: playwright tests #20

feat: playwright tests

feat: playwright tests #20

Workflow file for this run

name: E2E tests
on:
push:
branches: [ main, master, next ]
pull_request:
workflow_dispatch:
jobs:
run-tests:
name: 'E2E tests'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm ci
- run: npm run build
- run: npx playwright install --with-deps
- run: npx playwright test --config ./tests/config/playwright.config.ts