Fixed build and ci steps

This commit is contained in:
Tom Butcher 2025-06-01 20:57:52 +01:00
parent 7fb90583fd
commit 7e89f32c5b

5
Jenkinsfile vendored
View File

@ -10,21 +10,26 @@ pipeline {
steps {
nodejs(nodeJSInstallationName: 'Node23') {
sh 'node -v'
sh 'npm -v'
}
}
}
stage('Install Dependencies') {
steps {
nodejs(nodeJSInstallationName: 'Node23') {
sh 'npm ci'
}
}
}
stage('Build') {
steps {
nodejs(nodeJSInstallationName: 'Node23') {
sh 'npm run build'
}
}
}
stage('Deploy') {
steps {