From 7a792381838a4254e5c3c6c5a40ab43f7b6f3aa6 Mon Sep 17 00:00:00 2001 From: Tom Butcher Date: Sun, 14 Jun 2026 23:55:16 +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 95f25bf..4f51f30 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -26,7 +26,7 @@ pipeline { stage('Install Dependencies') { steps { nodejs(nodeJSInstallationName: 'Node23') { - sh 'pnpm install --frozen-lockfile --production=false' + sh 'pnpm install --frozen-lockfile --production=false --ignore-scripts=false' } } }