inzynieria_frontend/Jenkinsfile
adsasd768 e663140521
Some checks reported errors
Cat or Not - frontend/inzynieria_frontend/pipeline/head Something is wrong with the build of this commit
Jenkins init config
2021-12-10 20:12:09 +01:00

17 lines
214 B
Groovy

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