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 } }