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

This commit is contained in:
Tom Butcher 2026-06-14 23:55:08 +01:00
parent fb9454d8e0
commit 127fefc39a

2
Jenkinsfile vendored
View File

@ -14,7 +14,7 @@ def deploy() {
stage('Install Dependencies (Ubuntu)') { stage('Install Dependencies (Ubuntu)') {
nodejs(nodeJSInstallationName: 'Node23') { nodejs(nodeJSInstallationName: 'Node23') {
sh 'pnpm install --frozen-lockfile --production=false' sh 'pnpm install --frozen-lockfile --production=false --ignore-scripts=false'
} }
} }