docs: add v4-migration tool to MCP page and fix broken link #3864
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: PR Checks | |
| on: | |
| pull_request: | |
| types: [opened, synchronize] | |
| jobs: | |
| build: | |
| name: Build | |
| uses: ./.github/workflows/build-and-upload.yml | |
| secrets: | |
| npm_token: ${{ secrets.npm_token }} | |
| test: | |
| name: Test | |
| needs: build | |
| uses: ./.github/workflows/test.yml | |
| with: | |
| has_changes: ${{ needs.build.outputs.has_changes }} | |
| secrets: | |
| npm_token: ${{ secrets.npm_token }} | |
| commitlint: | |
| name: Commit Lint | |
| needs: build | |
| if: false | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.sha }} |