Prefer npm ci over install for security (#26601)

This commit is contained in:
Evan Huus
2026-08-05 00:14:22 +02:00
committed by GitHub
parent 4308a4f035
commit 6ea215d171
5 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ cd ../../
# Ensure node_modules are installed
if [ ! -d "tools/ui/node_modules" ]; then
echo "📦 Installing npm dependencies..."
cd tools/ui && npm install && cd ../../
cd tools/ui && npm ci && cd ../../
fi
# Check and install git hooks if missing