Skip to content

Output spelling check results #9

Output spelling check results

Output spelling check results #9

Workflow file for this run

name: Spelling Check
on:
push:
branches:
- 'main'
- 'master'
pull_request:
permissions:
contents: read
jobs:
spellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: streetsidesoftware/cspell-action@v4
id: cspell
with:
config: 'cspell.json'
strict: true
incremental_files_only: true
verbose: true
inline: error
- name: Show Results
env:
outputs: ${{ toJSON(steps.cspell) }}
run: |
echo "$outputs"