Skip to content

chore: bump everything #16

chore: bump everything

chore: bump everything #16

Workflow file for this run

name: e2e tests
on:
pull_request:
types: [opened, edited, reopened, synchronize]
branches:
- main
paths-ignore:
- '**.md'
- '.vscode/**'
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 10
- name: Use Node.js 25
uses: actions/setup-node@v6
with:
node-version: 25
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Install Playwright
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npx playwright test
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 30