| name: cspell |
| |
| on: |
| push: |
| branches: |
| - main |
| - v6-dev |
| pull_request: |
| workflow_dispatch: |
| |
| env: |
| FORCE_COLOR: 2 |
| |
| permissions: |
| contents: read |
| |
| jobs: |
| cspell: |
| permissions: |
| # allow streetsidesoftware/cspell-action to fetch files for commits and PRs |
| contents: read |
| pull-requests: read |
| runs-on: ubuntu-latest |
| |
| steps: |
| - name: Clone repository |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 |
| with: |
| persist-credentials: false |
| |
| - name: Run cspell |
| uses: streetsidesoftware/cspell-action@e0668cf020899e887ee8ad4d173c31738a79eae8 # v9.0.1 |
| with: |
| config: ".cspell.json" |
| files: | |
| .gitignore |
| **/*.{md,mdx,yml,yaml,json,js,cjs,mjs,ts} |
| inline: error |
| incremental_files_only: false |