Skip to content

Bump lycheeverse/lychee-action from ec7614d7605b47efb08dc370f6d0a71884cba944 to fdea7032675810093199f485fe075f057cc37b3e in /.github/workflows #20

Bump lycheeverse/lychee-action from ec7614d7605b47efb08dc370f6d0a71884cba944 to fdea7032675810093199f485fe075f057cc37b3e in /.github/workflows

Bump lycheeverse/lychee-action from ec7614d7605b47efb08dc370f6d0a71884cba944 to fdea7032675810093199f485fe075f057cc37b3e in /.github/workflows #20

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@v4
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"