Gate Cypress workflow on 'run e2e tests' label to match pro #6607
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
| on: | |
| # Trigger the workflow on push or pull request, | |
| # but only for the main branch | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| name: Typo Checks | |
| # Cancel superseded runs for the same branch. The group is named explicitly | |
| # rather than derived from github.workflow: several files share the workflow | |
| # name `Inspections` and would otherwise cancel each other. | |
| concurrency: | |
| group: formidable-typos-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| run: | |
| name: Spell Check with Typos | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Actions Repository | |
| uses: actions/checkout@v4 | |
| - name: Check spelling of file.txt | |
| uses: crate-ci/typos@master |