From 42eade53b6070a7c6cfc4d637b0c9e71402b1284 Mon Sep 17 00:00:00 2001 From: n Date: Thu, 3 Oct 2024 23:04:32 +0200 Subject: [PATCH] add markdownlint to CI --- .forgejo/workflows/check.yml | 4 ++++ .markdownlint.json | 3 +++ 2 files changed, 7 insertions(+) create mode 100644 .markdownlint.json diff --git a/.forgejo/workflows/check.yml b/.forgejo/workflows/check.yml index 7e2d41d..399b551 100644 --- a/.forgejo/workflows/check.yml +++ b/.forgejo/workflows/check.yml @@ -7,4 +7,8 @@ jobs: name: check steps: - uses: actions/checkout@v4 + - uses: actions/markdownlint-cli2-action@v17 + with: + globs: | + **/*.md - run: shellcheck *.sh monitoring/*.sh diff --git a/.markdownlint.json b/.markdownlint.json new file mode 100644 index 0000000..5cf2aa2 --- /dev/null +++ b/.markdownlint.json @@ -0,0 +1,3 @@ +{ + "MD029": { "style": "zero" } +}