Spell Check Markdown #7
This file contains 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: Check Spell Markdown | |
on: | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
spell-ckeck: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: streetsidesoftware/cspell-action@v3 | |
name: Spell Check | |
with: | |
github_token: ${{ github.token }} | |
config: './.vscode/cspell.json' | |
inline: warning | |
root: '.' | |
files: | | |
**/*.md | |
!dist/**/*.{ts,js} | |
# Limit the files checked to the ones in the pull request or push. | |
incremental_files_only: true | |
strict: true #setting to false allows the build to continue even if spelling mistakes are detected | |
- uses: rojopolis/spellcheck-github-actions@v0 | |
name: Spellcheck | |
with: | |
source_files: README.md | |
task_name: Markdown |