Added initial Jenkins pipeline file.

This commit is contained in:
Harrison Deng 2022-01-19 22:53:16 -06:00
parent 2170fc6c84
commit cdd150801e

12
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,12 @@
pipeline {
agent any
stages {
stage ("build") {
steps {
nodejs("NodeJS (17.4.0)") {
sh "npm run build"
}
}
}
}
}