29 lines
660 B
YAML
Raw Normal View History

2022-10-07 20:50:20 -04:00
name: Documentation Checks
on:
push:
branches:
- develop
paths:
2022-10-17 19:32:47 -03:00
- 'packages/mermaid/src/docs/**/*'
2022-10-07 20:50:20 -04:00
pull_request:
branches:
- develop
paths:
2022-10-17 19:32:47 -03:00
- 'packages/mermaid/src/docs/**/*'
2022-10-07 20:50:20 -04:00
jobs:
spellcheck:
2022-10-07 21:42:39 -04:00
name: 'Docs: Spellcheck'
2022-10-07 20:50:20 -04:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
2022-10-07 20:50:20 -04:00
name: Check out the code
- uses: actions/setup-node@v3
2022-10-07 20:50:20 -04:00
name: Setup node
with:
2022-10-31 21:44:09 +05:30
node-version: '18'
2022-10-07 20:50:20 -04:00
- run: npm install -g cspell
name: Install cSpell
2022-10-17 19:32:47 -03:00
- run: cspell --config ./cSpell.json "packages/mermaid/src/docs/**/*.md" --no-progress
2022-10-07 21:58:52 -04:00
name: Run cSpell