b9d5592f0f
Some checks reported errors
Cat or Not - frontend/inzynieria_frontend/pipeline/head Something is wrong with the build of this commit
21 lines
294 B
Groovy
21 lines
294 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'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|