fix: install wrangler in pipeline

This commit is contained in:
wfz
2026-05-07 11:20:58 +08:00
parent c8a71cb031
commit 78d758a210

2
Jenkinsfile vendored
View File

@@ -9,7 +9,7 @@ pipeline {
stage('Install') {
steps {
echo 'Installing dependencies...'
sh 'npm ci'
sh 'npm ci && npm install -g wrangler'
}
}