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') { stage('Install dependencies') {
steps { steps {
sh 'yarn install' // Install project dependencies sh 'npm install --include dev' // Install project dependencies
} }
} }
stage('Build') { stage('Build') {
steps { steps {
sh 'yarn build' // Build the project sh 'npm build' // Build the project
} }
} }