scroll/Jenkinsfile
Timothy J. Warren 871e816489
Some checks failed
timw4mail/scroll/pipeline/head There was a failure building this commit
Try using the deno docker image
2025-01-23 16:30:57 -05:00

27 lines
356 B
Groovy

pipeline {
agent none
stages {
stage('bun') {
agent {
docker {
image 'oven/bun:1-debian'
args '-u root --privileged'
}
}
steps {
sh 'bun test'
}
}
stage('deno') {
agent {
docker {
image 'denoland/deno:alpine'
args '-u root --privileged'
}
}
steps {
sh 'deno task deno-test'
}
}
}