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') { stage('tsx') {
agent { agent {
docker { docker {
image 'node:current' image 'node:alpine'
args '-u root --privileged' args '-u root --privileged -e NPM_CONFIG_LOGLEVEL=info'
} }
} }
steps { steps {
sh 'npm install' sh 'apk add --no-cache gcompat'
sh 'npm run tsx-test' sh 'apk add just'
sh 'just tsx-test'
} }
} }
} }