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 13:39:35 -04:00
parent ec3d9c3179
commit 57e96db4ff

9
Jenkinsfile vendored
View File

@ -28,13 +28,14 @@ pipeline {
stage('tsx') {
agent {
docker {
image 'node:current'
args '-u root --privileged'
image 'node:alpine'
args '-u root --privileged -e NPM_CONFIG_LOGLEVEL=info'
}
}
steps {
sh 'npm install'
sh 'npm run tsx-test'
sh 'apk add --no-cache gcompat'
sh 'apk add just'
sh 'just tsx-test'
}
}
}