schedulord-discordbot/Jenkinsfile
Jesse James Isler 9e2f577c1e
Some checks failed
gitea_dndsources/schedulord-discordbot/pipeline/head There was a failure building this commit
Initial Commit
2022-06-08 16:04:45 +02:00

12 lines
201 B
Groovy

pipeline {
agent { dockerfile true }
stages {
stage('Test') {
steps {
sh 'node --version'
sh 'svn --version'
}
}
}
}