cv-site/Jenkinsfile

13 lines
213 B
Plaintext
Raw Normal View History

2022-05-15 18:12:58 +02:00
pipeline {
agent any
stages {
stage('Build') {
npm run build
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}