epsilon_webui/Jenkinsfile

12 lines
164 B
Plaintext
Raw Normal View History

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