Skip to content

fixes

fixes #296

Workflow file for this run

name: CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 20
cache: "pnpm"
- run: npm config set "@tiptap-pro:registry" https://registry.tiptap.dev/
- run: npm config set "@jsr:registry" https://npm.jsr.io
- run: npm config set "//registry.tiptap.dev/:_authToken" ${{ secrets.TIPTAP_TOKEN }}
- run: pnpm i
- run: pnpm run build-packages
- run: pnpm run static
- run: pnpm run test
# assert no file were changed
- run: git diff --exit-code