initial changes

This commit is contained in:
2025-03-03 08:28:30 -06:00
parent 03b7b9fca2
commit 486d7e3a6f
20 changed files with 457 additions and 2 deletions

20
.jenkins_builds Normal file
View File

@@ -0,0 +1,20 @@
#!groovy
pipeline {
agent any
options {
disableConcurrentBuilds()
}
stages {
stage('build') {
steps {
nodejs(nodeJSInstallationName: 'current') {
sh 'npm i'
sh 'npm run pkg'
}
}
}
}
}