update ignore lists #16
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Spell Check | |
| on: | |
| pull_request: | |
| push: | |
| branches: [master] | |
| jobs: | |
| markdown-spellcheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v3 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: '16' | |
| - name: Install markdown-spellcheck | |
| run: npm install -g markdown-spellcheck | |
| - name: Run markdown-spellcheck on Markdown files | |
| run: npx markdown-spellcheck --en-US --report "**/*.md" | |
| cspell-spellcheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install cspell | |
| run: npm install -g cspell | |
| - name: Run cspell on markdown files | |
| run: npx cspell --locale en-US --show-suggestions "**/*.md" |