inzynieria_frontend/Jenkinsfile
s464930 53796be672
Some checks failed
Cat or Not - frontend/inzynieria_frontend/pipeline/head There was a failure building this commit
fix docker npm
2021-12-10 22:28:52 +01:00

20 lines
252 B
Groovy

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