inzynieria_frontend/Jenkinsfile
s464930 e155b3ae25
Some checks reported errors
Cat or Not - frontend/inzynieria_frontend/pipeline/head Something is wrong with the build of this commit
Jenkins npm fix
2021-12-10 22:11:21 +01:00

20 lines
257 B
Groovy

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