Jenkinsfile-1 aktualisiert

This commit is contained in:
2025-03-06 09:58:18 +00:00
parent a898c51992
commit d1c26b1947

View File

@@ -0,0 +1,12 @@
pipeline {
agent {
docker { image 'node:16-alpine' }
}
stages {
stage('Test') {
steps {
sh 'node --version'
}
}
}
}