Skip to content

fix: combobox

fix: combobox #247

Workflow file for this run

name: Build and Test
on: [push]
jobs:
build:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
node-version: [16.x, 17.x]
operating-system: [ubuntu-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v2
with:
fetch-depth: 2
- uses: pnpm/action-setup@v2.2.2
- name: Setup Node.js environment ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Install dependencies
run: pnpm install
# - name: Run Build and Tests
# run: pnpm run build-test
env:
CI: true