Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,9 @@ jobs:
run: npm run build
working-directory: docs
env:
# typedoc over the full src tree pushes the build past Node's
# default old-space limit on runners (OOM, exit 134)
NODE_OPTIONS: --max-old-space-size=6144
# typedoc over the full src tree (incl. the THREE namespace) pushes
# the build past Node's default old-space limit on runners (OOM,
# exit 134); 6144 became insufficient once THREE was re-exported
NODE_OPTIONS: --max-old-space-size=8192
- name: Assert typia transform applied in docs bundle
run: bash scripts/assert-docs-typia-transform.sh
7 changes: 4 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,10 @@ jobs:
run: npm run build
working-directory: docs
env:
# typedoc over the full src tree pushes the build past Node's
# default old-space limit on runners (OOM, exit 134)
NODE_OPTIONS: --max-old-space-size=6144
# typedoc over the full src tree (incl. the THREE namespace) pushes
# the build past Node's default old-space limit on runners (OOM,
# exit 134); 6144 became insufficient once THREE was re-exported
NODE_OPTIONS: --max-old-space-size=8192

- name: Assert typia transform applied in docs bundle
run: bash scripts/assert-docs-typia-transform.sh
Expand Down
Loading