Skip to content

Big update

Big update #123

Workflow file for this run

on:
push:
branches:
- "main"
- "restructure"
jobs:
build-project:
name: Build Project
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Install dependencies
run: npm install
- name: Generate build
run: npm run build
env:
CI: false
# Share artifact inside workflow
- name: Share artifact inside workflow
uses: actions/upload-artifact@v4
with:
name: DiyHueUI
path: |
build
dist