Skip to content

Commit

Permalink
build: bump node mem limit on CI (#2772)
Browse files Browse the repository at this point in the history
  • Loading branch information
holic authored Apr 30, 2024
1 parent 3ffd69b commit 14cb092
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ name: Build
on:
pull_request:

env:
NODE_OPTIONS: "--max-old-space-size=4096"

jobs:
build:
name: Build and validate artifacts
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
# Ensure only one workflow/job is publishing to npm at a time
concurrency: publish-to-npm

env:
NODE_OPTIONS: "--max-old-space-size=4096"

jobs:
prerelease:
name: Changesets Prerelease
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ on:
# Ensure only one workflow/job is publishing to npm at a time
concurrency: publish-to-npm

env:
NODE_OPTIONS: "--max-old-space-size=4096"

jobs:
release:
name: Release
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ on:
# Ensure only one workflow/job is publishing to npm at a time
concurrency: publish-to-npm

env:
NODE_OPTIONS: "--max-old-space-size=4096"

jobs:
release-snapshot:
name: Publish snapshot release to npm
Expand Down

0 comments on commit 14cb092

Please sign in to comment.