gonito-frontend/Jenkinsfile

23 lines
417 B
Plaintext
Raw Normal View History

2022-10-24 08:02:17 +02:00
pipeline {
agent {
docker {
image 'node:19-bullseye-slim'
}
}
environment {
CI = 'true'
NODE_ENV = 'production'
}
stages {
stage('Build') {
steps {
2022-10-24 08:08:42 +02:00
sh 'uname -a'
sh 'npm install --loglevel=verbose'
2022-10-24 08:02:17 +02:00
sh 'npm install react-scripts@3.4.1 -g'
sh 'npm clean-install --only=production'
}
}
}
}