Skip to content

🐛 fix: improve dropdown focus handling, tag keyboard events #552

🐛 fix: improve dropdown focus handling, tag keyboard events

🐛 fix: improve dropdown focus handling, tag keyboard events #552

Workflow file for this run

name: CI
on:
push:
branches: [develop]
pull_request:
branches: [develop]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: '21.2.0'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Check types
run: tsc --noEmit --pretty --project './tsconfig.json'
- name: Build library
run: yarn build-lib
- name: Run tests
run: yarn test --ci --coverage