docs: add example for GitLab pipeline

This commit is contained in:
Dirk Klimpel 2024-03-26 08:22:20 +01:00 committed by GitHub
parent 2b0095f270
commit dd27b9acc1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -50,6 +50,21 @@ To run as a [pre-commit hook](https://pre-commit.com):
args: [-q]
```
## Run in a GitLab pipeline
```yaml
linkchecker:
stage: test
image:
name: ghcr.io/tcort/markdown-link-check:3.11.2
entrypoint: ["/bin/sh", "-c"]
script:
- find . -name \*.md -print0 | xargs -0 -n1 markdown-link-check
rules:
- changes:
- "**/*.md"
```
## Run in other tools
- [Mega-Linter](https://megalinter.io/latest/): Linters aggregator [including markdown-link-check](https://megalinter.io/latest/descriptors/markdown_markdown_link_check/)