Bump stylelint from 16.9.0 to 16.10.0 #489
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Check spelling" | |
on: | |
pull_request: | |
branches-ignore: | |
- "dependabot/**" | |
permissions: # added using https://github.com/step-security/secure-workflows | |
contents: read | |
jobs: | |
spellcheck: | |
permissions: | |
contents: read # for streetsidesoftware/cspell-action to fetch files for commit | |
pull-requests: read # for streetsidesoftware/cspell-action to fetch commits for PR | |
runs-on: ubuntu-latest | |
if: ${{ github.actor != 'dependabot[bot]' }} | |
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 |