Skip to content

Commit a7fe387

Browse files
shuga2704Yakutoc
authored andcommitted
feat(infra): increase heap space for node
1 parent 6ba5e99 commit a7fe387

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/documentation-deploy-common.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ jobs:
140140
- name: Build documentation - "${{ matrix.package }}"
141141
if: ${{ fromJSON(env.HAS_PACKAGE_DOCS) }}
142142
env:
143-
NODE_OPTIONS: "--max_old_space_size=6034"
143+
NODE_OPTIONS: "--max_old_space_size=10240"
144144
run: |
145145
npm run build --prefix="./website/${{ matrix.package }}-docs" -- --no-minify
146146
cp -R ./website/${{ matrix.package }}-docs/build ./s3_local_docs_build/${{ env.SHORT_NAME }}

.github/workflows/documentation-deploy-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ jobs:
126126
- name: Build documentation - "${{ matrix.package }}"
127127
if: ${{ fromJSON(env.HAS_PACKAGE_DOCS) }}
128128
env:
129-
NODE_OPTIONS: "--max_old_space_size=6034"
129+
NODE_OPTIONS: "--max_old_space_size=10240"
130130
run: |
131131
npm run build --prefix="./website/${{ matrix.package }}-docs" -- --no-minify
132132
cp -R ./website/${{ matrix.package }}-docs/build ./s3_build/${PR_NAME}/${{ env.SHORT_NAME }}

.github/workflows/documentation-deploy-release-branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ jobs:
131131
- name: Build documentation - "${{ matrix.package }}"
132132
if: ${{ fromJSON(env.HAS_PACKAGE_DOCS) }}
133133
env:
134-
NODE_OPTIONS: "--max_old_space_size=6034"
134+
NODE_OPTIONS: "--max_old_space_size=10240"
135135
run: |
136136
npm run build --prefix="./website/${{ matrix.package }}-docs" -- --no-minify
137137
cp -R ./website/${{ matrix.package }}-docs/build ./s3_build/${PR_NAME}/${{ env.SHORT_NAME }}

0 commit comments

Comments
 (0)