Skip to content

Commit

Permalink
Merge pull request #19856 from storybookjs/failing-vite-build
Browse files Browse the repository at this point in the history
Build: Increase max node memory for jobs
  • Loading branch information
yannbf authored Nov 16, 2022
2 parents 90f4216 + 2ad359f commit 834e11b
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ executors:
docker:
- image: cimg/node:16.17.1
environment:
NODE_OPTIONS: --max_old_space_size=3076
NODE_OPTIONS: --max_old_space_size=6144
resource_class: <<parameters.class>>
sb_node_16_browsers:
parameters:
Expand All @@ -32,7 +32,7 @@ executors:
docker:
- image: cimg/node:16.17.1-browsers
environment:
NODE_OPTIONS: --max_old_space_size=3076
NODE_OPTIONS: --max_old_space_size=6144
resource_class: <<parameters.class>>
sb_playwright:
parameters:
Expand All @@ -45,7 +45,7 @@ executors:
docker:
- image: mcr.microsoft.com/playwright:v1.27.0-focal
environment:
NODE_OPTIONS: --max_old_space_size=3076
NODE_OPTIONS: --max_old_space_size=6144
resource_class: <<parameters.class>>

orbs:
Expand Down Expand Up @@ -405,6 +405,8 @@ jobs:
executor:
class: medium+
name: sb_node_16_browsers
environment:
NODE_OPTIONS: --max_old_space_size=6144
steps:
# switched this to the CircleCI helper to get the full git history for TurboSnap
- checkout
Expand Down

0 comments on commit 834e11b

Please sign in to comment.