Jenkins init config
Some checks reported errors
Cat or Not - frontend/inzynieria_frontend/pipeline/head Something is wrong with the build of this commit

This commit is contained in:
adsasd768 2021-12-10 20:12:09 +01:00
parent 9c229142bf
commit e663140521

16
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,16 @@
pipeline {
agent {
docker {
image 'node'
}
}
stages {
stage('Build') {
steps {
sh 'npm install'
sh 'npm run dev'
}
}
}
}