Compare commits

..

1 Commits

Author SHA1 Message Date
e596b0d5ce chore(deps): update volker.raschek/docker-compose docker tag to v2.40.0
Some checks failed
Markdown linter / markdown-link-checker (push) Has been cancelled
Markdown linter / markdown-lint (push) Has been cancelled
Build / build-amd64 (pull_request) Has been cancelled
Build / build-arm64 (pull_request) Has been cancelled
Markdown linter / markdown-link-checker (pull_request) Has been cancelled
Markdown linter / markdown-lint (pull_request) Has been cancelled
2025-10-22 22:18:02 +02:00

View File

@@ -1,21 +1,46 @@
name: 'Lint Markdown files'
name: Markdown linter
on:
pull_request:
types:
- opened
- reopened
- synchronize
paths: [ "**/*.md" ]
types: [ "opened", "reopened", "synchronize" ]
push:
branches:
- master
- '**'
paths: [ "**/*.md" ]
tags-ignore:
- '**'
workflow_dispatch: {}
jobs:
markdown-lint:
runs-on: ubuntu-latest
markdown-link-checker:
container:
image: docker.io/library/node:24.10.0-alpine
runs-on:
- ubuntu-latest
steps:
- name: Install tooling
run: |
apk update
apk add git npm
- uses: actions/checkout@v5.0.0
- uses: DavidAnson/markdownlint-cli2-action@v19.1.0
with:
globs: '**/*.md'
- name: Verify links in markdown files
run: |
npm install
npm run readme:link
markdown-lint:
container:
image: docker.io/library/node:24.10.0-alpine
runs-on:
- ubuntu-latest
steps:
- name: Install tooling
run: |
apk update
apk add git
- uses: actions/checkout@v5.0.0
- name: Lint markdown files
run: |
npm install
npm run readme:lint