template-react-app/Jenkinsfile
2024-01-29 12:30:25 +01:00

26 lines
472 B
Groovy

/* groovylint-disable-next-line CompileStatic */
pipeline {
agent any
stages {
stage('Checkout') {
steps {
checkout scm
}
}
stage('Hello World') {
steps {
dir('frontend') {
sh 'echo "Hello World!"'
}
}
}
}
post {
always {
// Cleanup the workspace
cleanWs()
}
}
}