Skip to content

chore(deps-dev): bump homebridge from 2.0.0-beta.0 to 2.0.0-beta.22 #2196

chore(deps-dev): bump homebridge from 2.0.0-beta.0 to 2.0.0-beta.22

chore(deps-dev): bump homebridge from 2.0.0-beta.0 to 2.0.0-beta.22 #2196

Workflow file for this run

name: Build and Lint
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 18.x
- 20.x
- 22.x
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Build the project
run: npm run build
env:
CI: true
- name: Lint the project
run: npm run lint