Skip to content

Merge pull request #874 from trimble-oss/dependabot/npm_and_yarn/popo… #2984

Merge pull request #874 from trimble-oss/dependabot/npm_and_yarn/popo…

Merge pull request #874 from trimble-oss/dependabot/npm_and_yarn/popo… #2984

Workflow file for this run

name: "Check spelling"
on: # rebuild any PRs and main branch changes
pull_request:
push:
branches-ignore:
- "dependabot/**"
env:
FORCE_COLOR: 2
NODE: 20
permissions:
contents: read
jobs:
spellcheck: # run the action
runs-on: ubuntu-latest
if: ${{ github.actor != 'dependabot[bot]' }}
permissions:
# allow streetsidesoftware/cspell-action to fetch files for commits and PRs
contents: read
pull-requests: read
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: streetsidesoftware/cspell-action@v6
with:
check_dot_files: false
incremental_files_only: true
inline: warning
strict: false