Skip to content

wip, speed up test

wip, speed up test #7

Workflow file for this run

name: Build & Test
"on":
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af
with:
node-version: "20"
- uses: pnpm/action-setup@v2
with:
version: 8
- run: pnpm install
- run: pnpm exec playwright install --with-deps
- name: Run Playwright tests with debug logging
env:
DEBUG: pw:api,pw:browser*,pw:protocol*
PWDEBUG: 1
run: pnpm exec playwright test --reporter=list
- run: pnpm exec playwright test
- if: always()
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882
with:
name: playwright-report
path: playwright-report/
retention-days: 30