Timothy J. Warren
ce7a60332a
All checks were successful
timw4mail/scroll/pipeline/head This commit looks good
30 lines
402 B
Groovy
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'
|
|
}
|
|
}
|
|
}
|
|
}
|