Skip to content

Commit

Permalink
testing with correct syntax for NODE_OPTIONS
Browse files Browse the repository at this point in the history
  • Loading branch information
danielc-n committed Oct 1, 2024
1 parent e9e3e2e commit 6892dae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run: yarn install

- name: set max memory allocation
run: export NODE_OPTIONS=-max_old_space_size=4096
run: export NODE_OPTIONS="--max-old-space-size=4096"

- name: package
id: package
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
run: yarn config set '@bit:registry' https://node.bit.dev

- name: set max memory allocation
run: export NODE_OPTIONS=-max_old_space_size=4096
run: export NODE_OPTIONS="--max-old-space-size=4096"

- name: install dependencies
run: yarn install
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:
- name: set max memory allocation
run: export NODE_OPTIONS=--max_old_space_size=4096
run: export NODE_OPTIONS="--max-old-space-size=4096"

- name: yarn install
run: yarn install
Expand Down

0 comments on commit 6892dae

Please sign in to comment.