Update Jenkinsfile to allow script execution during dependency installation
Some checks failed
farmcontrol/farmcontrol-ws/pipeline/head There was a failure building this commit

This commit is contained in:
Tom Butcher 2026-06-14 23:55:16 +01:00
parent 3196385c72
commit 7a79238183

2
Jenkinsfile vendored
View File

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