jenkins-scripts/build/dev/Jenkinsfile

8 lines
104 B
Plaintext
Raw Normal View History

2020-03-04 19:41:58 +03:00
stage ('build') {
2020-09-26 14:28:11 +03:00
try {
sh 'npm run build'
} catch (error) {
echo error
}
2020-03-02 22:35:26 +03:00
}