Skip to content

docs: rate limits table with search #6521

docs: rate limits table with search

docs: rate limits table with search #6521

Workflow file for this run

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/markdown-lint@v1.5.0
with:
config: "./docs/.markdownlint.yml"
args: "./docs/docs/**/*.+(md|mdx)"
check-console-links:
name: Check console links for 404s
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: "24.x"
cache: "npm"
- run: npm install
- run: npm run check-console-links
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