atuin/Jenkinsfile
shu 37b8cd799a
Some checks are pending
Build Multiarch Container Image / call-reusable-workflow (push) Waiting to run
Update Jenkinsfile
2025-06-03 15:24:47 +00:00

12 lines
No EOL
248 B
Groovy

pipeline {
agent {
docker { image 'node:22.16.0-alpine3.22' }
}
stages {
stage('Test') {
steps {
sh 'node --eval "console.log(process.platform,process.env.CI)"'
}
}
}
}