8 lines
104 B
Groovy
8 lines
104 B
Groovy
stage ('build') {
|
|
try {
|
|
sh 'npm run build'
|
|
} catch (error) {
|
|
echo error
|
|
}
|
|
}
|