epsilon_webui/Jenkinsfile

12 lines
164 B
Groovy

pipeline {
agent any
stages {
stage ("build") {
steps {
nodejs("NodeJS (17.4.0)") {
sh "npm run build"
}
}
}
}
}