scroll/Jenkinsfile
Timothy J. Warren db3e5dd685
All checks were successful
timw4mail/scroll/pipeline/head This commit looks good
Don't bother testing tsx runtime
2024-08-05 14:40:43 -04:00

30 lines
402 B
Groovy

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