scroll/Jenkinsfile
Timothy J. Warren a0ed45e689
All checks were successful
timw4mail/scroll/pipeline/head This commit looks good
Try using the deno docker image
2025-01-23 16:31:46 -05:00

28 lines
361 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'
}
}
}
}