This commit is contained in:
chacha
2026-02-23 20:57:07 +00:00
parent 20e7ee0ec9
commit 4e9360a7e0
2 changed files with 12 additions and 1 deletions

11
Jenkinsfile vendored
View File

@@ -0,0 +1,11 @@
pipeline {
agent { dockerfile true }
stages {
stage('Test') {
steps {
sh 'node --version'
sh 'svn --version'
}
}
}
}