fixes #296
This file contains 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: 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 |