Skip to content

reduce test urls to make tests pass #27

reduce test urls to make tests pass

reduce test urls to make tests pass #27

Workflow file for this run

name: Build & Test
"on":
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
test:
name: Build & 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
- name: pnpm install
run: pnpm install
- name: playwright install
run: pnpm exec playwright install --with-deps
- name: Test
run: pnpm exec playwright test --reporter=list
- if: always()
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882
with:
name: playwright-report
path: playwright-report/
retention-days: 30