Refactor Jenkinsfile to remove unnecessary script execution during dependency installation and add pnpm workspace configuration for specific builds.
All checks were successful
farmcontrol/farmcontrol-ws/pipeline/head This commit looks good

This commit is contained in:
Tom Butcher 2026-06-15 00:21:22 +01:00
parent 7a79238183
commit a2f9412cbd
2 changed files with 4 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -26,7 +26,7 @@ pipeline {
stage('Install Dependencies') {
steps {
nodejs(nodeJSInstallationName: 'Node23') {
sh 'pnpm install --frozen-lockfile --production=false --ignore-scripts=false'
sh 'pnpm install --frozen-lockfile --production=false'
}
}
}

3
pnpm-workspace.yaml Normal file
View File

@ -0,0 +1,3 @@
allowBuilds:
puppeteer: true
unrs-resolver: true