Fixed a typo.

Fixed Jenkinsfile.
This commit is contained in:
2022-05-11 17:36:39 -05:00
parent fd87219999
commit 8ee18bbf8d
2 changed files with 6 additions and 5 deletions

7
Jenkinsfile vendored
View File

@@ -3,13 +3,14 @@ pipeline {
stages {
stage ("install") {
steps {
nodejs("System") {
sh "npm install"
}
}
}
stage ("build") {
steps {
nodejs("System NodeJS") {
sh "npm install"
nodejs("System") {
sh "npm run build"
}
}