Bump prettier from 3.5.3 to 3.6.2 #564
Workflow file for this run
This file contains hidden or 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@v7 | |
| with: | |
| check_dot_files: false | |
| incremental_files_only: true | |
| inline: warning | |
| strict: false |