Attempt to test tsx
Some checks failed
timw4mail/scroll/pipeline/head There was a failure building this commit

This commit is contained in:
Timothy Warren 2024-07-26 10:45:18 -04:00
parent 8b44e250e2
commit 7aa71d4dae

12
Jenkinsfile vendored
View File

@ -25,5 +25,17 @@ pipeline {
sh 'just deno-test'
}
}
stage('tsx') {
agent {
docker {
image 'node:22-alpine'
args '-u root --privileged'
}
}
steps {
sh 'npm install'
sh 'npm run tsx-test'
}
}
}
}