scroll/Jenkinsfile
Timothy J. Warren ce7a60332a
All checks were successful
timw4mail/scroll/pipeline/head This commit looks good
Attempt to fix Deno CI tests
2024-06-26 15:46:08 -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'
}
}
}
}