From 7a2de8258694570e06ebedebc5e25484787e1309 Mon Sep 17 00:00:00 2001 From: Tom Butcher Date: Sun, 14 Jun 2026 23:55:14 +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 ab42189..2bd1acd 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' } } }