Prefer npm ci over install for security (#26601)

This commit is contained in:
Evan Huus
2026-08-04 18:14:22 -04: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 "$REPO_ROOT/tools/ui"
# Check that node_modules exists
if [ ! -d "node_modules" ]; then
echo "❌ node_modules not found. Run 'npm install' first."
echo "❌ node_modules not found. Run 'npm ci' first."
exit 1
fi