scroll/Jenkinsfile
Timothy J. Warren b01212b76e
Some checks failed
timw4mail/scroll/pipeline/head There was a failure building this commit
Attempt to test tsx
2024-07-26 14:24:08 -04:00

37 lines
499 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 any
steps {
sh 'npm install'
sh 'npm run tsx-test'
}
}
}
}