Skip to content

fix(core): singleSelect - search filter not working well due to duplicate key issue. #99

fix(core): singleSelect - search filter not working well due to duplicate key issue.

fix(core): singleSelect - search filter not working well due to duplicate key issue. #99

Workflow file for this run

name: Lint, Test, Build
on:
pull_request:
branches:
- 'master'
jobs:
lint-test-build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
cache: 'yarn'
- name: Install dependencies
run: yarn
- name: Lint
run: yarn lint
- name: Test
run: yarn test:coverage
- name: Build
run: yarn build