helpers/.woodpecker/docs.yml

26 lines
551 B
YAML
Raw Normal View History

---
when:
- event: [pull_request, tag]
- event: [push, manual]
branch:
- ${CI_REPO_DEFAULT_BRANCH}
steps:
2024-10-27 20:30:10 +00:00
- name: markdownlint
image: quay.io/thegeeklab/markdownlint-cli
2024-10-27 20:30:10 +00:00
depends_on: []
commands:
- markdownlint 'README.md'
2024-10-27 20:30:10 +00:00
- name: spellcheck
image: quay.io/thegeeklab/alpine-tools
2024-10-27 20:30:10 +00:00
depends_on: []
commands:
- spellchecker --files 'README.md' -d .dictionary -p spell indefinite-article syntax-urls
environment:
FORCE_COLOR: "true"
NPM_CONFIG_LOGLEVEL: "error"
depends_on:
- test