We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6315e88 commit c9608d7Copy full SHA for c9608d7
images/macos/provision/core/node.sh
@@ -10,10 +10,12 @@ brew link node@$defaultVersion --force --overwrite
10
echo Installing yarn...
11
curl -fsSL https://yarnpkg.com/install.sh | bash
12
13
-npm_global_packages=$(get_toolset_value '.npm.global_packages[].name')
14
-for module in ${npm_global_packages[@]}; do
15
- echo "Install $module"
16
- npm install -g $module
+if ! is_Ventura || ! is_VenturaArm64; then
+ npm_global_packages=$(get_toolset_value '.npm.global_packages[].name')
+ for module in ${npm_global_packages[@]}; do
+ echo "Install $module"
17
+ npm install -g $module
18
done
19
+fi
20
21
invoke_tests "Node" "Node.js"
0 commit comments