Skip to content

chore(deps-dev): bump homebridge from 1.7.0 to 1.8.0 #2113

chore(deps-dev): bump homebridge from 1.7.0 to 1.8.0

chore(deps-dev): bump homebridge from 1.7.0 to 1.8.0 #2113

Workflow file for this run

name: Build and Lint
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 18.x
- 20.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: Lint the project
run: npm run lint
- name: Build the project
run: npm run build
env:
CI: true