Skip to content

Gate Cypress workflow on 'run e2e tests' label to match pro #6607

Gate Cypress workflow on 'run e2e tests' label to match pro

Gate Cypress workflow on 'run e2e tests' label to match pro #6607

Workflow file for this run

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