We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 574c7f7 commit 54e005dCopy full SHA for 54e005d
1 file changed
.github/workflows/create_release.yml
@@ -18,16 +18,10 @@ jobs:
18
with:
19
node-version: '22'
20
21
- - name: Install dependencies (debug)
+ - name: Install dependencies (show post-install logs)
22
run: |
23
- echo "-------- node/npm version --------"
24
- node -v
25
- npm -v
26
- echo "-------- npm config --------"
27
- npm config list
28
- echo "-------- npm install --------"
29
- npm install --verbose # 关键:--verbose 会把详细日志打到屏幕
30
-
+ npm config set loglevel verbose # 已经开过,可保留
+ npm install --foreground-scripts # 关键:把生命周期脚本输出打到终端
31
32
- name: Get package.json version
33
id: get_version
0 commit comments