3947f621aa
Some checks failed
Cat or Not - frontend/inzynieria_frontend/pipeline/head There was a failure building this commit
21 lines
293 B
Groovy
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'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|