ci: add markdown linting workflow (#16)
* ci: add markdown linting workflow * fix: disable MD025 for frontmatter and H1 compatibility --------- Co-authored-by: gandalf-the-greybeard[bot] <gandalf-the-greybeard[bot]@users.noreply.github.com>
This commit was merged in pull request #16.
This commit is contained in:
committed by
GitHub
parent
d9f5a454a5
commit
c0186224d8
@@ -0,0 +1,17 @@
|
||||
name: CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
pull_request:
|
||||
branches: [main]
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Lint Markdown
|
||||
uses: DavidAnson/markdownlint-cli2-action@v15
|
||||
with:
|
||||
globs: "**/*.md"
|
||||
Reference in New Issue
Block a user