Skip to content

Commit 511ef72

Browse files
authored
test webui
1 parent e8eff85 commit 511ef72

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/server-webui.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,19 @@ jobs:
4343
ref: ${{ github.event.inputs.sha || github.event.pull_request.head.sha || github.sha || github.head_ref || github.ref_name }}
4444

4545
- name: Setup Node.js
46-
id: setup
46+
id: node
4747
uses: actions/setup-node@v4
4848
with:
4949
node-version: "22"
5050
cache: "npm"
5151
cache-dependency-path: "tools/server/webui/package-lock.json"
5252

53+
- name: Install dependencies
54+
id: setup
55+
if: ${{ steps.node.conclusion == 'success' }}
56+
run: npm ci
57+
working-directory: tools/server/webui
58+
5359
- name: Run type checking
5460
if: ${{ steps.setup.conclusion == 'success' }}
5561
run: npm run check

0 commit comments

Comments
 (0)