We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c122dd6 commit ec8aba4Copy full SHA for ec8aba4
1 file changed
.github/workflows/vmm-ui.yml
@@ -0,0 +1,32 @@
1
+# SPDX-FileCopyrightText: © 2024-2025 Phala Network <dstack@phala.network>
2
+#
3
+# SPDX-License-Identifier: Apache-2.0
4
+
5
+name: VMM UI build
6
7
+on:
8
+ push:
9
+ branches: [ master, next, dev-* ]
10
+ pull_request:
11
12
13
+jobs:
14
+ build:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: actions/checkout@v4
18
19
+ - name: Install Node.js
20
+ uses: actions/setup-node@v4
21
+ with:
22
+ node-version: '20'
23
24
+ - name: Build vmm UI
25
+ run: |
26
+ npm ci
27
+ npm run build
28
+ working-directory: vmm/ui
29
30
+ - name: Ensure vmm UI build is clean
31
32
+ test -z "$(git status --porcelain)"
0 commit comments