scroll/Jenkinsfile
Timothy J. Warren ec3d9c3179
Some checks failed
timw4mail/scroll/pipeline/head There was a failure building this commit
Attempt to test tsx
2024-07-26 13:22:34 -04:00

42 lines
580 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'
}
}
stage('tsx') {
agent {
docker {
image 'node:current'
args '-u root --privileged'
}
}
steps {
sh 'npm install'
sh 'npm run tsx-test'
}
}
}
}