atuin/Jenkinsfile
Sebastian Hugentobler 2c40597de6
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Has been cancelled
try jenkins
2025-03-06 16:03:07 +01:00

13 lines
249 B
Groovy

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