Skip to content

feat(match): new match template #11

feat(match): new match template

feat(match): new match template #11

Workflow file for this run

name: Playwright Tests
on: [push, pull_request]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Use Node.js 23
uses: actions/setup-node@v4
with:
node-version: '23.6'
cache: 'pnpm'
- run: pnpm install
- run: pnpm run build --e2e
- name: Install Playwright Browsers
run: pnpm exec playwright install --with-deps
- name: Run Playwright tests
run: pnpm exec playwright test
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 30