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