2023-11-08 08:02:25 +00:00
|
|
|
---
|
|
|
|
when:
|
|
|
|
- event: [pull_request, tag]
|
|
|
|
- event: [push, manual]
|
|
|
|
branch:
|
|
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
|
|
|
|
steps:
|
2024-01-16 15:26:51 +00:00
|
|
|
- name: markdownlint
|
2023-11-08 08:02:25 +00:00
|
|
|
image: quay.io/thegeeklab/markdownlint-cli
|
|
|
|
commands:
|
|
|
|
- markdownlint 'README.md'
|
|
|
|
|
2024-01-16 15:26:51 +00:00
|
|
|
- name: spellcheck
|
2023-11-08 08:02:25 +00:00
|
|
|
image: quay.io/thegeeklab/alpine-tools
|
|
|
|
commands:
|
|
|
|
- spellchecker --files '_docs/**/*.md' 'README.md' -d .dictionary -p spell indefinite-article syntax-urls
|
|
|
|
environment:
|
|
|
|
FORCE_COLOR: "true"
|
|
|
|
|
2024-01-16 15:26:51 +00:00
|
|
|
- name: link-validation
|
2023-11-08 08:02:25 +00:00
|
|
|
image: docker.io/lycheeverse/lychee
|
|
|
|
commands:
|
|
|
|
- lychee --no-progress --format detailed README.md
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- build-package
|