inzynieria_frontend/Jenkinsfile
s464930 3947f621aa
Some checks failed
Cat or Not - frontend/inzynieria_frontend/pipeline/head There was a failure building this commit
Jenkinsfile typo
2021-12-10 22:47:53 +01:00

21 lines
293 B
Groovy

pipeline {
agent {
docker {
image 'node'
}
}
environment {
HOME = '.'
}
stages {
stage('Build') {
steps {
sh 'npm install --production'
sh 'npm run build'
sh 'npm run start'
}
}
}
}