ci: fix npm ci → npm install (package-lock.json not tracked)

This commit is contained in:
2026-02-24 02:05:27 +09:00
parent 3e4ad775a6
commit ec492e3829

2
Jenkinsfile vendored
View File

@@ -22,7 +22,7 @@ pipeline {
stage('Install') {
steps {
sh 'npm ci'
sh 'npm install --prefer-offline'
}
}