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 e8eff85 commit 511ef72Copy full SHA for 511ef72
.github/workflows/server-webui.yml
@@ -43,13 +43,19 @@ jobs:
43
ref: ${{ github.event.inputs.sha || github.event.pull_request.head.sha || github.sha || github.head_ref || github.ref_name }}
44
45
- name: Setup Node.js
46
- id: setup
+ id: node
47
uses: actions/setup-node@v4
48
with:
49
node-version: "22"
50
cache: "npm"
51
cache-dependency-path: "tools/server/webui/package-lock.json"
52
53
+ - name: Install dependencies
54
+ id: setup
55
+ if: ${{ steps.node.conclusion == 'success' }}
56
+ run: npm ci
57
+ working-directory: tools/server/webui
58
+
59
- name: Run type checking
60
if: ${{ steps.setup.conclusion == 'success' }}
61
run: npm run check
0 commit comments