Skip to content

chore(a11y): enhance accessibility by adding aria-labels and titles to interactive elements #27

chore(a11y): enhance accessibility by adding aria-labels and titles to interactive elements

chore(a11y): enhance accessibility by adding aria-labels and titles to interactive elements #27

Workflow file for this run

name: Lint and Format
on:
pull_request:
branches:
- main
- develop
jobs:
code-quality:
name: Code Quality Checks
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
- name: Cache Node Modules
uses: actions/cache@v4
id: cache-dependencies
with:
path: |
node_modules
~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install Dependencies
run: npm install --legacy-peer-deps --ignore-scripts
- name: Run ESLint
run: npm run lint
- name: Run Prettier Format Check
run: npm run format:check