Skip to content

fix(react): dropdown audit fixes — locked-row hover cancel, stale foc… #78

fix(react): dropdown audit fixes — locked-row hover cancel, stale foc…

fix(react): dropdown audit fixes — locked-row hover cancel, stale foc… #78

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm run lint
- run: npm run format:check
- run: npm run test
- run: npm run type-check
- run: npm run build
# Every package has a bundle-size budget (see each one's own "size-limit" config in
# package.json) — this rebuilds each and gates the PR on staying under it, catching a
# bundle-size regression before merge instead of relying on someone remembering to run
# `npm run size` by hand.
- run: npm run size -w packages/core
- run: npm run size -w packages/react
- run: npm run size -w packages/vue
- run: npm run size -w packages/solid
- run: npm run size -w packages/vanilla