We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae4da62 commit efcc6ebCopy full SHA for efcc6eb
1 file changed
.github/workflows/create_release.yml
@@ -9,8 +9,6 @@ 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
@@ -20,8 +18,15 @@ jobs:
20
18
with:
21
19
node-version: '22'
22
23
- - name: Install dependencies
24
- run: npm install
+ - name: Install dependencies (debug + retry + more memory/disk)
+ env:
+ NODE_OPTIONS: --max-old-space-size=6144
+ run: |
25
+ df -h
26
+ free -h
27
+ npm config set loglevel silly
28
+ npm install --foreground-scripts --no-audit || \
29
+ (sleep 5 && npm install --foreground-scripts --no-audit --prefer-offline)
30
31
- name: Get package.json version
32
id: get_version
0 commit comments