Skip to content

Playwright Tests

Playwright Tests #6718

Workflow file for this run

name: Playwright Tests
on:
pull_request:
merge_group:
jobs:
playwright:
name: 'Playwright Tests'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
# Steps for Playwright testing with container
- uses: actions/setup-node@v6
with:
node-version: 24
- name: Run your tests
timeout-minutes: 30
run: make pwtests
- uses: actions/upload-artifact@v7
if: failure()
with:
name: test-results
path: packages/playwright/test-results/
retention-days: 30