We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54e005d commit ae4da62Copy full SHA for ae4da62
1 file changed
.github/workflows/create_release.yml
@@ -9,6 +9,8 @@ on:
9
jobs:
10
check-release:
11
runs-on: ubuntu-latest
12
+ env:
13
+ NODE_OPTIONS: --max-old-space-size=6144
14
steps:
15
- name: Checkout code
16
uses: actions/checkout@v3
@@ -18,10 +20,8 @@ jobs:
18
20
with:
19
21
node-version: '22'
22
- - name: Install dependencies (show post-install logs)
- run: |
23
- npm config set loglevel verbose # 已经开过,可保留
24
- npm install --foreground-scripts # 关键:把生命周期脚本输出打到终端
+ - name: Install dependencies
+ run: npm install
25
26
- name: Get package.json version
27
id: get_version
0 commit comments