6 lines
98 B
Groovy
6 lines
98 B
Groovy
stage('unit tests') {
|
|
steps {
|
|
echo 'runing tests...'
|
|
sh 'npm run test'
|
|
}
|
|
} |