Add Azure Linux 4 E2E test coverage (#385) #1037
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: | |
| push: | |
| branches: ["main", "dev"] | |
| pull_request: | |
| branches: ["main", "dev"] | |
| jobs: | |
| spelling: | |
| name: Check Spelling | |
| permissions: | |
| contents: read | |
| runs-on: ubuntu-latest | |
| if: ${{ contains(github.event_name, 'pull_request') || github.event_name == 'push' }} | |
| concurrency: | |
| group: spelling-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Check Spelling | |
| uses: streetsidesoftware/cspell-action@v8 | |
| with: | |
| config: cspell.json | |
| # On pull requests, only check files changed in the PR. | |
| incremental_files_only: ${{ github.event_name == 'pull_request' }} | |
| # Fail the check when spelling issues are found. | |
| strict: true | |
| inline: warning |