epsilon_webui/Jenkinsfile

12 lines
164 B
Plaintext
Raw Normal View History

2022-01-20 04:53:16 +00:00
pipeline {
agent any
stages {
stage ("build") {
steps {
nodejs("NodeJS (17.4.0)") {
sh "npm run build"
}
}
}
}
}