17 lines
302 B
YAML
17 lines
302 B
YAML
|
name: Build homebridge-hue-chase
|
||
|
on:
|
||
|
workflow_dispatch:
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
|
||
|
jobs:
|
||
|
Build:
|
||
|
runs-on: internal
|
||
|
steps:
|
||
|
- uses: actions/checkout@v4
|
||
|
- uses: actions/setup-node@v4
|
||
|
with:
|
||
|
node-version: 18
|
||
|
- run: npm ci
|
||
|
- run: npm run build
|