Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 6m59s
13 lines
246 B
Groovy
13 lines
246 B
Groovy
pipeline {
|
|
agent {
|
|
any { image 'node:22.14.0-alpine3.21' }
|
|
}
|
|
stages {
|
|
stage('Test') {
|
|
steps {
|
|
sh 'node --eval "console.log(process.platform,process.env.CI)"'
|
|
}
|
|
}
|
|
}
|
|
}
|