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 ee21fe9195
commit 7c588ee58c

2
Jenkinsfile vendored
View File

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