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

29 lines
382 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 'apt install just'
sh 'just deno-test'
}
}
}
}