name: Build Dashboard UI on: workflow_call: jobs: build: runs-on: ubuntu-latest defaults: run: working-directory: apps/dashboard-ui steps: - uses: actions/checkout@v4 with: submodules: true fetch-depth: 0 - uses: actions/setup-node@v4 with: node-version: '24' - name: Install run: npm ci || npm install - name: Build run: npm run build - name: Upload artifact uses: actions/upload-artifact@v4 with: name: dashboard-ui-dist path: apps/dashboard-ui/dist/