docs: bump to 2f3b64312b8d0ac9a01ef13cfe691732ec316986 #5828
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: Static Checks | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| lint-markdown: | |
| name: Lint Markdown | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v6 | |
| - name: Lint files | |
| uses: avto-dev/[email protected] | |
| with: | |
| config: "./docs/.markdownlint.yml" | |
| args: "./docs/docs/**/*.+(md|mdx)" | |
| misspell: | |
| name: Check spelling using misspell | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code. | |
| uses: actions/checkout@v6 | |
| - name: misspell | |
| id: check_for_typos | |
| uses: reviewdog/action-misspell@v1 | |
| with: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| path: "./docs" | |
| locale: "US" | |
| level: "warning" | |
| pattern: | | |
| *.md | |
| *.mdx |