Added testing to pipeline.

This commit is contained in:
2022-05-11 17:46:51 -05:00
parent 8ee18bbf8d
commit 568aa575e3
2 changed files with 9 additions and 2 deletions

7
Jenkinsfile vendored
View File

@@ -8,6 +8,13 @@ pipeline {
}
}
}
stage ("test") {
steps {
nodejs("System") {
sh "npm run test"
}
}
}
stage ("build") {
steps {
nodejs("System") {