e155b3ae25
Some checks reported errors
Cat or Not - frontend/inzynieria_frontend/pipeline/head Something is wrong with the build of this commit
20 lines
257 B
Groovy
20 lines
257 B
Groovy
pipeline {
|
|
agent {
|
|
docker {
|
|
image 'node'
|
|
}
|
|
}
|
|
environment {
|
|
HOME = '.'
|
|
}
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
sh 'npm install'
|
|
sh 'npm run dev'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|