Fixed build and ci steps
This commit is contained in:
parent
7fb90583fd
commit
7e89f32c5b
9
Jenkinsfile
vendored
9
Jenkinsfile
vendored
@ -10,19 +10,24 @@ pipeline {
|
||||
steps {
|
||||
nodejs(nodeJSInstallationName: 'Node23') {
|
||||
sh 'node -v'
|
||||
sh 'npm -v'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Install Dependencies') {
|
||||
steps {
|
||||
sh 'npm ci'
|
||||
nodejs(nodeJSInstallationName: 'Node23') {
|
||||
sh 'npm ci'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Build') {
|
||||
steps {
|
||||
sh 'npm run build'
|
||||
nodejs(nodeJSInstallationName: 'Node23') {
|
||||
sh 'npm run build'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user