From 88b5139cfda79918882d0280dc3ca78079d18965 Mon Sep 17 00:00:00 2001 From: Tom Butcher Date: Sun, 6 Apr 2025 21:49:23 +0100 Subject: [PATCH] Added more debugging --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 30bcb40..b617bc7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -21,13 +21,13 @@ pipeline { stage('Install dependencies') { steps { - sh 'npm install' // Install project dependencies + sh 'ls && npm install' // Install project dependencies } } stage('Build') { steps { - sh 'npm ls vite && npm run build' // Build the project + sh 'ls && npm ls vite && npm run build' // Build the project } }