mirror of
https://github.com/thegeeklab/wp-plugin-go.git
synced 2024-11-14 09:40:38 +00:00
21 lines
530 B
YAML
21 lines
530 B
YAML
|
---
|
||
|
when:
|
||
|
- event: [pull_request, tag]
|
||
|
- event: [push, manual]
|
||
|
branch:
|
||
|
- ${CI_REPO_DEFAULT_BRANCH}
|
||
|
|
||
|
steps:
|
||
|
markdownlint:
|
||
|
image: quay.io/thegeeklab/markdownlint-cli
|
||
|
commands:
|
||
|
- markdownlint 'README.md' 'CONTRIBUTING.md'
|
||
|
|
||
|
spellcheck:
|
||
|
image: quay.io/thegeeklab/alpine-tools
|
||
|
commands:
|
||
|
- spellchecker --files 'README.md' 'CONTRIBUTING.md' -d .dictionary -p spell indefinite-article syntax-urls --no-suggestions
|
||
|
environment:
|
||
|
FORCE_COLOR: "true"
|
||
|
NPM_CONFIG_LOGLEVEL: "error"
|