14 lines
208 B
YAML
14 lines
208 B
YAML
|
---
|
||
|
when:
|
||
|
event: push
|
||
|
branch:
|
||
|
exclude:
|
||
|
- main
|
||
|
steps:
|
||
|
spellcheck:
|
||
|
name: Run the spellchecker
|
||
|
image: node
|
||
|
commands:
|
||
|
- npm i markdown-spellcheck -g
|
||
|
- mdspell "*.md" -n -r
|