test: include Safari for a11y snapshots #3610
Workflow file for this run
This file contains 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: PR Title Linter | |
on: | |
pull_request: | |
types: [opened, edited, reopened, unlocked] | |
permissions: read-all | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: .nvmrc | |
cache: yarn | |
- run: yarn install --frozen-lockfile --non-interactive | |
- name: 'Lint: Pull request title' | |
env: | |
PR_TITLE: ${{ github.event.pull_request.title }} | |
run: echo "$PR_TITLE" | yarn commitlint | |
- name: 'Warning: Pull request title must match conventional commits pattern!' | |
if: ${{ failure() }} | |
run: echo "Pull request title must match conventional commits pattern!" |