mieszkania5/Jenkinsfile

23 lines
434 B
Plaintext
Raw Normal View History

2023-10-24 17:50:54 +02:00
pipeline {
2023-10-24 17:59:02 +02:00
agent {
docker { image 'node:18.18.2-alpine3.18' }
}
2023-10-24 17:50:54 +02:00
stages {
stage('Build') {
steps {
echo 'Building..'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}