Skip to content

try to customise multi select dropdown component with Ids #176

try to customise multi select dropdown component with Ids

try to customise multi select dropdown component with Ids #176

Workflow file for this run

name: Verify pull-request
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
branches: ['main']
jobs:
test-application:
name: Test application
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
node_version: [20]
steps:
- name: Checkout project sources
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
- name: Install dependencies
run: npm i
- name: Verify linting errors
run: npm run lint
- name: Run TypeScript type check
run: npm run check-types
- name: Build embeddable
run: npm run embeddable:build