Skip to content

fix: isOpen accepts undefined (#2769) #111

fix: isOpen accepts undefined (#2769)

fix: isOpen accepts undefined (#2769) #111

Workflow file for this run

name: CI
on:
pull_request:
push:
paths:
- '**.ts'
- '**.html'
- '**.scss'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: latest
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Run lint
run: pnpm lint
- name: Run tests
run: pnpm test:ci
- name: Build
run: pnpm build:demo
- name: Coveralls
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./coverage/ng-select/lcov.info