docs: add custom spellcheck dictionary and fix docs typos (#22457)

* docs: fix typos and add docs spellcheck workflow

* docs: add changelog entry for docs spellcheck updates

* docs: fix FAQ TOC fragment links for markdownlint

* docs: fix TOC nesting and spellcheck dictionary flags
This commit is contained in:
Vincent Koc
2026-02-21 01:35:35 -05:00
committed by GitHub
parent 3b8d7b2e42
commit 3002be76e4
6 changed files with 26 additions and 14 deletions

View File

@@ -259,6 +259,7 @@ jobs:
- name: Check types and lint and oxfmt
run: pnpm check
# Report-only dead-code scans. Runs after scope detection and stores machine-readable
# results as artifacts for later triage before we enable hard gates.
# Temporarily disabled in CI while we process initial findings.
@@ -298,7 +299,7 @@ jobs:
name: dead-code-${{ matrix.tool }}-${{ github.run_id }}
path: .artifacts/deadcode
# Validate docs (format, lint, broken links) only when docs files changed.
# Validate docs (spellcheck, format, lint, broken links) only when docs files changed.
check-docs:
needs: [docs-scope]
if: needs.docs-scope.outputs.docs_changed == 'true'
@@ -317,6 +318,9 @@ jobs:
- name: Check docs
run: pnpm check:docs
- name: Spellcheck docs
run: pnpm docs:spellcheck
secrets:
runs-on: blacksmith-16vcpu-ubuntu-2404
steps: