Skip to content

Enforce nextjs peerDependency to 14.2.25 and 15.2.3 #109

Enforce nextjs peerDependency to 14.2.25 and 15.2.3

Enforce nextjs peerDependency to 14.2.25 and 15.2.3 #109

Workflow file for this run

name: Playwright Tests
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
test:
if: false # Disable this job temporarily. TODO: Fix this workflow
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install dependencies
run: npm install -g pnpm && pnpm install
- name: Install Playwright Browsers
run: pnpm exec playwright install --with-deps
- name: Run build step
uses: ./.github/actions/build
with:
node: 22
- name: Run Playwright tests
run: pnpm exec playwright test
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 30