Skip to content

lint

lint #10

Workflow file for this run

name: Markdown Quality Check
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
markdown-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# - name: AutoCorrect
# uses: huacnlee/autocorrect-action@main
- name: Markdown Lint
uses: DavidAnson/markdownlint-cli2-action@v20
with:
config: '.github/.markdownlint.json'
globs: |
docs/**/*.md
docs/*.md
*.md
# - name: Markdown Link Check
# uses: gaurav-nelson/github-action-markdown-link-check@v1
# with:
# use-quiet-mode: 'yes'
# use-verbose-mode: 'no'
# folder-path: '.'
# config-path: '.github/.markdown-link-check.json'