Bump @tiptap/pm from 3.27.2 to 3.29.0 #493
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Pull Request Checks | |
| on: | |
| pull_request: | |
| types: [opened, edited, synchronize, reopened] | |
| branches: | |
| - develop | |
| jobs: | |
| pr-checks: | |
| name: Build and Lint check | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: "22" | |
| cache: "pnpm" | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Typecheck | |
| run: pnpm typecheck | |
| - name: Install Playwright browser | |
| run: pnpm --filter hobom-design-system exec playwright install --with-deps chromium | |
| - name: Run test | |
| run: pnpm test:coverage | |
| - name: Run build | |
| run: pnpm build:hobom | |
| - name: Run lint | |
| run: pnpm lint | |
| - name: Run e2e (hobom-angel) | |
| run: pnpm --filter hobom-angel test:e2e |