chore: Bump @tiptap/extension-code-block from 2.26.1 to 3.2.0 #3075
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: Library test | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| concurrency: | |
| group: ${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| prepare: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup | |
| uses: aragon/gov-ui-kit/.github/actions/setup@main | |
| - name: Build library | |
| run: yarn build | |
| - name: Build storybook | |
| run: yarn build:storybook | |
| test: | |
| needs: prepare | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup | |
| uses: aragon/gov-ui-kit/.github/actions/setup@main | |
| with: | |
| # Checkout full history to correclty check changeset status | |
| fetch-depth: 0 | |
| - name: Run tests with coverage | |
| run: | | |
| set -eo pipefail | |
| yarn test:coverage | |
| - name: Check types | |
| run: yarn type-check | |
| - name: Check linter | |
| run: yarn lint | |
| - name: Check prettier | |
| run: yarn prettify | |
| - name: Check changeset | |
| if: github.event_name == 'pull_request' | |
| run: yarn changeset status --since origin/main |