gonito-frontend/Jenkinsfile
2022-10-24 08:25:01 +02:00

26 lines
485 B
Groovy

pipeline {
agent {
docker {
image 'node:19-bullseye-slim'
}
}
environment {
CI = 'true'
NODE_ENV = 'production'
HOME = '.'
npm_config_cache = 'npm_cache'
}
stages {
stage('Build') {
steps {
sh 'uname -a'
sh 'npm install --loglevel=verbose'
//sh 'npm install react-scripts@3.4.1'
sh 'npm clean-install --only=production'
sh 'npm run build'
}
}
}
}