Skip to content

feat: Add Playwright tests for components #1

feat: Add Playwright tests for components

feat: Add Playwright tests for components #1

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
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Install Playwright Browsers
run: bun x playwright install --with-deps
- name: Run Playwright tests
run: bun tests:playwright test:pw
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 30