chore: reverted changes to use markdown instead of html tag for Session Timeout to ensure anchor tag works. #5103
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: Lint | |
| on: | |
| pull_request: | |
| paths: | |
| - "website/docs/**.md" | |
| - "website/docs/**.mdx" | |
| jobs: | |
| run_vale: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Run vale linter | |
| uses: errata-ai/vale-action@reviewdog | |
| with: | |
| files: website/docs/ | |
| env: | |
| GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |