mirror of
https://github.com/orbien-org/orbien.git
synced 2026-09-23 08:01:34 +00:00
20 lines
427 B
YAML
20 lines
427 B
YAML
name: Build server-ui
|
|
description: Install npm deps and build server dashboard assets
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Setup Node
|
|
uses: actions/setup-node@v5
|
|
with:
|
|
node-version: "22"
|
|
cache: npm
|
|
cache-dependency-path: server-ui/package-lock.json
|
|
|
|
- name: Build server-ui
|
|
shell: bash
|
|
working-directory: server-ui
|
|
run: |
|
|
npm ci
|
|
npm run build
|