Added more debugging
Some checks failed
tombutcher.work/tombutcher-ui/pipeline/head There was a failure building this commit

This commit is contained in:
Tom Butcher 2025-04-06 21:49:23 +01:00
parent af89b535a6
commit 88b5139cfd

4
Jenkinsfile vendored
View File

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