From 5eec7fc1a57a613e566ff71eb8a4176fc6b1a330 Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Mon, 14 Apr 2025 19:20:12 +0200 Subject: [PATCH] chore(ci): add markdownlinter --- .gitea/workflows/markdown-linters.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .gitea/workflows/markdown-linters.yaml diff --git a/.gitea/workflows/markdown-linters.yaml b/.gitea/workflows/markdown-linters.yaml new file mode 100644 index 0000000..74e81ea --- /dev/null +++ b/.gitea/workflows/markdown-linters.yaml @@ -0,0 +1,22 @@ +name: Markdown linter + +on: + pull_request: + types: [ "opened", "reopened", "synchronize" ] + push: + branches: + - '**' + tags-ignore: + - '**' + workflow_dispatch: {} + +jobs: + markdown-lint: + container: + image: git.cryptic.systems/volker.raschek/markdownlint:0.44.0 + runs-on: + - ubuntu-latest + steps: + - uses: actions/checkout@v4.2.2 + - name: Lint Markdown files + run: markdownlint --config .markdownlint.yaml . \ No newline at end of file