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 549bf25 commit 1cafa62Copy full SHA for 1cafa62
.github/workflows/webui.yml
@@ -0,0 +1,35 @@
1
+name: WebUI
2
+
3
+on:
4
+ pull_request:
5
+ paths:
6
+ - "tools/server/webui/**"
7
+ branches:
8
+ - master
9
10
+jobs:
11
+ check-and-build:
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - name: Checkout code
16
+ uses: actions/checkout@v4
17
18
+ - name: Setup Node.js
19
+ uses: actions/setup-node@v4
20
+ with:
21
+ node-version: "22"
22
+ cache: "npm"
23
+ cache-dependency-path: "tools/server/webui/package-lock.json"
24
25
+ - name: Install dependencies
26
+ run: npm ci
27
+ working-directory: tools/server/webui
28
29
+ - name: Run type checking and linting
30
+ run: npm run check
31
32
33
+ - name: Build application
34
+ run: npm run build
35
0 commit comments