template-react-app/Jenkinsfile

24 lines
426 B
Groovy

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()
}
}
}