Timothy J. Warren
871e816489
Some checks failed
timw4mail/scroll/pipeline/head There was a failure building this commit
27 lines
356 B
Groovy
27 lines
356 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'
|
|
}
|
|
}
|
|
}
|