From 127fefc39acc4943333b770a19445fc1481d96ec Mon Sep 17 00:00:00 2001 From: Tom Butcher Date: Sun, 14 Jun 2026 23:55:08 +0100 Subject: [PATCH] Update Jenkinsfile to allow script execution during dependency installation --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 9b9251a..c4a1eec 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -14,7 +14,7 @@ def deploy() { stage('Install Dependencies (Ubuntu)') { nodejs(nodeJSInstallationName: 'Node23') { - sh 'pnpm install --frozen-lockfile --production=false' + sh 'pnpm install --frozen-lockfile --production=false --ignore-scripts=false' } }