schedulord-discordbot/Jenkinsfile
Jesse James Isler ae4d6a02d4
All checks were successful
gitea_dndsources/schedulord-discordbot/pipeline/head This commit looks good
Schedulord/schedulord-discordbot/pipeline/head This commit looks good
we don't talk about subversion
2022-06-08 16:08:32 +02:00

11 lines
166 B
Groovy

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