Merge pull request #570 from Picovoice/android-test-app #484
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: SpellCheck | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master, 'v[0-9]+.[0-9]+' ] | |
jobs: | |
markdown: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install CSpell | |
run: npm install -g cspell | |
- name: Run CSpell | |
run: cspell --config resources/.lint/spell-check/.cspell.json "**/*" |