Skip to content

Commit a63ca16

Browse files
authored
fix(ci): make --no-experimental-strip-types conditional for Node 22.x (#16654)
1 parent 3db2ae9 commit a63ca16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/nodejs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
npm run test:schematics
5151
npm run test:i18n
5252
env:
53-
NODE_OPTIONS: --max_old_space_size=4096
53+
NODE_OPTIONS: --max_old_space_size=4096 ${{ matrix.node-version == '22.x' && '--no-experimental-strip-types' || '' }}
5454
TZ: America/New_York
5555
- name: Build i18n & validate output
5656
run: |

0 commit comments

Comments
 (0)