Skip to content

Commit

Permalink
Merge branch 'main' into e2e-ci-timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
roaminro authored Apr 30, 2024
2 parents 6adbdfd + 14cb092 commit fbb6481
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 1 deletion.
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
2 changes: 1 addition & 1 deletion packages/cli/src/runDeploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ export async function runDeploy(opts: DeployOptions): Promise<WorldDeploy> {
rpc,
profile,
opts.forgeScriptOptions,
opts.awsKmsKeyId !== undefined,
opts.kms ? true : false,
);
}
console.log(chalk.green("Deployment completed in", (Date.now() - startTime) / 1000, "seconds"));
Expand Down

0 comments on commit fbb6481

Please sign in to comment.