Gianmarco Pettinato
c86542dabf
Some checks failed
pettinato.eu/cv-site/pipeline/head There was a failure building this commit
13 lines
213 B
Groovy
13 lines
213 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Build') {
|
|
npm run build
|
|
}
|
|
stage('Deploy') {
|
|
steps {
|
|
echo 'Deploying....'
|
|
}
|
|
}
|
|
}
|
|
} |