Skip to content

Commit 73dce9e

Browse files
chore(bump): bump node version long term support release (build time … (#12199)
1 parent ff262bc commit 73dce9e

File tree

6 files changed

+6
-7
lines changed

6 files changed

+6
-7
lines changed

.github/workflows/build-and-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ jobs:
110110
run: |
111111
./gradlew :datahub-frontend:build :datahub-web-react:build --parallel
112112
env:
113-
NODE_OPTIONS: "--max-old-space-size=3072"
113+
NODE_OPTIONS: "--max-old-space-size=4096"
114114
- name: Gradle compile (jdk8) for legacy Spark
115115
if: ${{ matrix.command == 'except_metadata_ingestion' && needs.setup.outputs.backend_change == 'true' }}
116116
run: |

.github/workflows/docker-unified.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ jobs:
446446
./gradlew :datahub-frontend:dist -x test -x yarnTest -x yarnLint --parallel
447447
mv ./datahub-frontend/build/distributions/datahub-frontend-*.zip datahub-frontend.zip
448448
env:
449-
NODE_OPTIONS: "--max-old-space-size=3072"
449+
NODE_OPTIONS: "--max-old-space-size=4096"
450450
- name: Build and push
451451
uses: ./.github/actions/docker-custom-build-and-push
452452
with:

datahub-web-react/build.gradle

+1-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ node {
1616
}
1717

1818
// Version of node to use.
19-
version = '21.2.0'
19+
version = '22.12.0'
2020

2121
// Version of Yarn to use.
2222
yarnVersion = '1.22.22'
@@ -93,7 +93,6 @@ task yarnLintFix(type: YarnTask, dependsOn: [yarnInstall, yarnGenerate]) {
9393
}
9494

9595
task yarnBuild(type: YarnTask, dependsOn: [yarnInstall, yarnGenerate]) {
96-
environment = [NODE_OPTIONS: "--max-old-space-size=3072 --openssl-legacy-provider"]
9796
args = ['run', 'build']
9897

9998
outputs.cacheIf { true }

datahub-web-react/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
"analyze": "source-map-explorer 'dist/assets/*.js'",
9191
"start": "yarn run generate && vite",
9292
"ec2-dev": "yarn run generate && CI=true;export CI;vite",
93-
"build": "yarn run generate && NODE_OPTIONS='--max-old-space-size=3072 --openssl-legacy-provider' CI=false vite build",
93+
"build": "yarn run generate && NODE_OPTIONS='--max-old-space-size=4096 --openssl-legacy-provider' CI=false vite build",
9494
"test": "vitest",
9595
"generate": "graphql-codegen --config codegen.yml",
9696
"lint": "eslint . --ext .ts,.tsx --quiet && yarn format-check && yarn type-check",

docs-website/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ node {
1414
}
1515

1616
// Version of node to use.
17-
version = '21.2.0'
17+
version = '22.12.0'
1818

1919
// Version of Yarn to use.
2020
yarnVersion = '1.22.22'

smoke-test/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ node {
1616
}
1717

1818
// Version of node to use.
19-
version = '21.2.0'
19+
version = '22.12.0'
2020

2121
// Version of Yarn to use.
2222
yarnVersion = '1.22.22'

0 commit comments

Comments
 (0)