Skip to content

Bump @tiptap/extension-typography from 2.10.4 to 2.11.0 #137

Bump @tiptap/extension-typography from 2.10.4 to 2.11.0

Bump @tiptap/extension-typography from 2.10.4 to 2.11.0 #137

Workflow file for this run

name: Playwright CI
permissions: {}
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
test:
name: E2E Tests with Playwright
timeout-minutes: 60
runs-on: ubuntu-latest
permissions:
contents: read
attestations: write
strategy:
matrix:
node-version: [ 20.x, 22.x ]
steps:
- uses: actions/checkout@v4
- name: Enable corepack
run: corepack enable
- name: Create .env file
run: echo "DATABASE_URL=\"file:./test.db\"" > .env
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: pnpm install
- name: Install Playwright Browsers
run: pnpm exec playwright install --with-deps
- name: Execute Prisma migrations
run: pnpm exec prisma migrate deploy
- name: Run Playwright tests
run: pnpm exec playwright test
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report-node-${{ matrix.node-version }}
path: playwright-report/
retention-days: 30