diff --git a/README.md b/README.md index 3971780..e7b2a92 100644 --- a/README.md +++ b/README.md @@ -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/)