Skip to content

Bump streetsidesoftware/cspell-action from 4 to 5 in /.github/workflows #18

Bump streetsidesoftware/cspell-action from 4 to 5 in /.github/workflows

Bump streetsidesoftware/cspell-action from 4 to 5 in /.github/workflows #18

Workflow file for this run

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