docs: Document resolver repository and LLM-powered analyzer feature #109
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: Vale Style Checks | |
| on: | |
| pull_request: | |
| paths: | |
| - 'docs/**/*.md' | |
| - 'docs/**/*.mdx' | |
| jobs: | |
| vale: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up dependencies | |
| run: npm install -g mdx2vast | |
| - name: Run Vale | |
| uses: errata-ai/[email protected] | |
| with: | |
| files: "docs/" | |
| fail_on_error: false | |
| vale_flags: "--minAlertLevel=error" | |
| env: | |
| GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |