chore(deps): bump @tiptap-pro/extension-drag-handle from 2.10.11 to 2.19.0 #4189
Workflow file for this run
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: Check | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| concurrency: | |
| group: check-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| env: | |
| TIPTAP_PRO_TOKEN: ${{ secrets.TIPTAP_PRO_TOKEN }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node-version: ['20.14.x'] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: install | |
| run: yarn install | |
| - name: Type Check | |
| run: yarn typecheck | |
| - name: Prettier | |
| run: yarn format | |
| - name: Run ESLint | |
| run: yarn lint |