Skip to content

David/playwright integration #4

David/playwright integration

David/playwright integration #4

Workflow file for this run

name: Playwright Tests
on:
push:
branches: [ dev ]
pull_request:
branches: [ dev ]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Run Playwright tests with Bunx
run: bunx playwright test
- name: Upload Playwright Report
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 30