diff --git a/Jenkinsfile b/Jenkinsfile index 88f3a83..02c253e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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' } } }