We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f76f172 commit 667fb44Copy full SHA for 667fb44
1 file changed
.github/workflows/release.yml
@@ -13,6 +13,7 @@ on:
13
14
env:
15
CARGO_TERM_COLOR: always
16
+ NPM_CONFIG_REGISTRY: https://registry.npmjs.org
17
18
jobs:
19
# ── Frontend (web build – shared by all platforms) ───────────────────────────
@@ -27,7 +28,9 @@ jobs:
27
28
node-version: '22'
29
30
- name: Install dependencies
- run: npm install --ignore-scripts
31
+ run: |
32
+ npm config set registry https://registry.npmjs.org
33
+ npm install --prefer-offline --no-audit --loglevel=error
34
35
- name: Build web
36
run: npm run build
@@ -69,7 +72,9 @@ jobs:
69
72
70
73
71
74
- name: Install frontend dependencies
75
76
77
78
79
- name: Download web build
80
uses: actions/download-artifact@v4
0 commit comments