Skip to content

Updated aria-labels and roles #4

Updated aria-labels and roles

Updated aria-labels and roles #4

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- id: node-cache
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/.nvmrc') }}-${{ hashFiles('**/package-lock.json') }}
- if: steps.node-cache.outputs.cache-hit != 'true'
run: npm install --prefix frontend --no-audit --no-fund --progress=false
- run: npm run format --prefix frontend
- run: npm run build --prefix frontend