290af48007
CI / server-core-test (push) Has been skipped
CI / device-agent-test (push) Has been skipped
CI / dashboard-test (push) Has been skipped
CI / build-server-core (push) Successful in 15m18s
CI / build-device-agent (push) Successful in 5m51s
CI / build-docs (push) Successful in 1m13s
CI / build-dashboard (push) Failing after 1m38s
CI / release (push) Has been skipped
Per Gitea tutorial: add RUNNER_TOOL_CACHE=/toolcache env, use actions/cache@v3 (not v4), and go-hashfiles instead of hashFiles() which is unsupported.
52 lines
1.3 KiB
YAML
52 lines
1.3 KiB
YAML
name: Build Dashboard UI
|
|
|
|
on:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
RUNNER_TOOL_CACHE: /toolcache
|
|
steps:
|
|
- name: Configure git auth for submodules
|
|
run: git config --global url."https://x-access-token:${{ secrets.BUILD_TOKEN }}@git.datadunia.com/".insteadOf "https://git.datadunia.com/"
|
|
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: true
|
|
fetch-depth: 0
|
|
token: ${{ secrets.BUILD_TOKEN }}
|
|
persist-credentials: true
|
|
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '24'
|
|
|
|
- uses: https://gitea.com/actions/go-hashfiles@v0.0.1
|
|
id: hash-npm
|
|
with:
|
|
patterns: |
|
|
apps/dashboard-ui/package-lock.json
|
|
|
|
- uses: actions/cache@v3
|
|
with:
|
|
path: |
|
|
~/.npm
|
|
key: npm-dashboard-${{ steps.hash-npm.outputs.hash }}
|
|
restore-keys: npm-dashboard-
|
|
|
|
- name: Install
|
|
working-directory: apps/dashboard-ui
|
|
run: npm ci || npm install
|
|
|
|
- name: Build
|
|
working-directory: apps/dashboard-ui
|
|
run: npm run build
|
|
|
|
- name: Upload artifact
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: dashboard-ui-dist
|
|
path: apps/dashboard-ui/dist/
|