Skip to content

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

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 #356

Workflow file for this run

name: Web CI
on: [push, pull_request]
jobs:
check:
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: Security Audit
run: npm audit --audit-level=critical
- name: Verify Package Integrity
run: ls src/app/page.tsx
- name: Run Test Coverage
run: npm run test:coverage