Skip to content

Commit

Permalink
build: don't fail on Node 16 until images are updated (#189886)
Browse files Browse the repository at this point in the history
  • Loading branch information
connor4312 authored Aug 8, 2023
1 parent c557c0f commit 85daa35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/npm/preinstall.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const patchNodeVersion = parseInt(nodeVersion[3]);

if (majorNodeVersion < 18 || (majorNodeVersion === 18 && minorNodeVersion < 15)) {
console.error('\033[1;31m*** Please use node.js versions >=18.15.x and <19.\033[0;0m');
err = true;
// err = true; enable once update unit test docker images are updated #189885
}
if (majorNodeVersion >= 19) {
console.warn('\033[1;31m*** Warning: Versions of node.js >= 19 have not been tested.\033[0;0m')
Expand Down

0 comments on commit 85daa35

Please sign in to comment.