mirror of
https://github.com/koush/scrypted.git
synced 2026-02-03 06:03:27 +00:00
* sdk: add env to FFmpegInput + fix python parameterized class generator * downgrade node for gh actions
26 lines
424 B
YAML
26 lines
424 B
YAML
name: Build SDK
|
|
|
|
on:
|
|
push:
|
|
branches: ["main"]
|
|
paths: ["sdk/**"]
|
|
pull_request:
|
|
paths: ["sdk/**"]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
working-directory: ./sdk
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 22.4.1
|
|
- run: npm ci
|
|
- run: npm run build
|