Skip to content

Commit

Permalink
docs: add example for GitLab pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
dklimpel authored Mar 26, 2024
1 parent 2b0095f commit dd27b9a
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/)
Expand Down

0 comments on commit dd27b9a

Please sign in to comment.