chore(a11y): enhance accessibility by adding aria-labels and titles to interactive elements #356
Workflow file for this run
This file contains hidden or 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: 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 |