fifthgrid_browser/.jenkins_builds
2025-03-03 08:28:30 -06:00

21 lines
257 B
Groovy

#!groovy
pipeline {
agent any
options {
disableConcurrentBuilds()
}
stages {
stage('build') {
steps {
nodejs(nodeJSInstallationName: 'current') {
sh 'npm i'
sh 'npm run pkg'
}
}
}
}
}