Skip to content

pressing issues

pressing issues #21

Workflow file for this run

name: Playwright Tests
# on:
# push:
# branches: [ main ]
# pull_request:
# branches: [ main ]
jobs:
test:
timeout-minutes: 2
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup bun
uses: oven-sh/setup-bun@v2
- run: bun install
- name: Install Playwright Browsers
run: bunx playwright install --with-deps
- name: Run Playwright tests
run: bunx playwright test
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: |
playwright-report/
playwright-screenshots/
retention-days: 30