feat: Add Cursor integration guide for GitHub MCP governance via hooks #96
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 Spellings with Vale | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: | |
| - main | |
| - "release/**" | |
| jobs: | |
| vale: | |
| name: runner / vale | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 23 | |
| - run: npm install -g mdx2vast | |
| - uses: errata-ai/vale-action@v2.1.1 | |
| with: | |
| fail_on_error: true | |
| reviewdog_url: https://github.com/reviewdog/reviewdog/releases/download/v0.17.5/reviewdog_0.17.5_Linux_x86_64.tar.gz |