Update Jenkinsfile
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 22:45:39 +01:00
parent f381a2deba
commit 9555ad0a2a

4
Jenkinsfile vendored
View File

@ -21,13 +21,13 @@ pipeline {
stage('Install dependencies') {
steps {
sh 'yarn install' // Install project dependencies
sh 'npm install --include dev' // Install project dependencies
}
}
stage('Build') {
steps {
sh 'yarn build' // Build the project
sh 'npm build' // Build the project
}
}