Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/.markdownlint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"line-length": false,
"no-inline-html": false,
"no-emphasis-as-heading": false
}
31 changes: 31 additions & 0 deletions .github/workflows/docs-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Markdown Quality Check

permissions:
contents: read

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
markdown-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: AutoCorrect
uses: huacnlee/autocorrect-action@main
with:
args: doc/**/*.md doc/*.md *.md

- name: Markdown Lint
uses: DavidAnson/markdownlint-cli2-action@v20
with:
config: '.github/.markdownlint.json'
fix: false
globs: |
docs/**/*.md
docs/*.md
*.md