Skip to content

Commit e5999da

Browse files
add cspell to workflows
1 parent 2f80089 commit e5999da

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/spell-check.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,12 @@ jobs:
2222

2323
- name: Run markdown-spellcheck on Markdown files
2424
run: npx markdown-spellcheck --en-US --report "**/*.md"
25+
26+
cspell-spellcheck:
27+
runs-on: ubuntu-latest
28+
steps:
29+
- uses: actions/checkout@v3
30+
- name: Install cspell
31+
run: npm install -g cspell
32+
- name: Run cspell on markdown files
33+
run: npx cspell --locale en-US --show-suggestions "**/*.md"

0 commit comments

Comments
 (0)