Added jenkins 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:42:36 +01:00
parent 38fcf99778
commit d1d2455a62

4
Jenkinsfile vendored
View File

@ -22,7 +22,7 @@ pipeline {
stage('Install dependencies') {
steps {
script {
sh 'npm install && npm install --save-dev vite wrangler' // Install project dependencies
sh 'npm install && npm install --save-dev' // Install project dependencies
}
}
}
@ -30,7 +30,7 @@ pipeline {
stage('Build') {
steps {
script {
sh 'npm run build' // Build the project
sh 'npm ls vite && npm run build' // Build the project
}
}
}