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