Skip to content

Add CI workflows, spellcheck, and update configs #3

Add CI workflows, spellcheck, and update configs

Add CI workflows, spellcheck, and update configs #3

Workflow file for this run

name: "Check spelling"
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
spellcheck:
runs-on: ubuntu-latest
if: ${{ github.actor != 'dependabot[bot]' }}
steps:
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
with:
persist-credentials: false
- uses: streetsidesoftware/cspell-action@3294df585d3d639e30f3bc019cb11940b9866e95 # v8.0.0
with:
check_dot_files: false
incremental_files_only: true
inline: warning
strict: false
suggestions: true