atuin/Jenkinsfile

13 lines
246 B
Plaintext
Raw Permalink Normal View History

2025-03-06 15:03:07 +00:00
pipeline {
agent {
2025-03-06 15:06:38 +00:00
any { image 'node:22.14.0-alpine3.21' }
2025-03-06 15:03:07 +00:00
}
stages {
stage('Test') {
steps {
sh 'node --eval "console.log(process.platform,process.env.CI)"'
}
}
}
}