Skip to content

refactor: adjust aria-controls to triggers according to conditions #3168

refactor: adjust aria-controls to triggers according to conditions

refactor: adjust aria-controls to triggers according to conditions #3168

Workflow file for this run

name: Build
on:
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
run_install: false
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint
- name: Run build
run: pnpm build
- name: Run tests
run: pnpm test:ci