cv-site/Jenkinsfile
Gianmarco Pettinato c86542dabf
Some checks failed
pettinato.eu/cv-site/pipeline/head There was a failure building this commit
add blog
2022-05-15 18:12:58 +02:00

13 lines
213 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
npm run build
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}