fix(esl-utils): fix visibility and a11y checks for getKeyboardFocusableElements #4455
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: Commits | |
on: | |
pull_request: | |
env: | |
node-version: 20.x | |
jobs: | |
validate-commit: | |
name: Lint Messages | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Use Node v${{ env.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
cache: 'npm' | |
node-version: ${{ env.node-version }} | |
- name: Install NPM Dependencies | |
run: npm ci | |
- name: Run Commit Lint | |
uses: wagoid/commitlint-github-action@v6 | |
with: | |
helpURL: 'https://github.com/exadel-inc/esl/blob/main/docs/COMMIT_CONVENTION.md' | |
env: | |
NODE_PATH: ${{ github.workspace }}/node_modules |