fixed
gitea_dndsources/schedulord-frontend/pipeline/head There was a failure building this commit Details

This commit is contained in:
Jesse James Isler 2022-06-09 11:12:37 +02:00
parent 81e3310eef
commit 52d08e5326
1 changed files with 23 additions and 17 deletions

40
Jenkinsfile vendored
View File

@ -16,24 +16,30 @@ pipeline {
}
stage('Test') {
agent {
docker {
image 'node:lts-bullseye-slim'
args '-p 3000:3000'
}
}
parallel {
stage('Static code analysis') {
steps {
unstash 'node_modules'
sh 'npm run-script lint'
}
stage('Static code analysis') {
agent {
docker {
image 'node:lts-bullseye-slim'
args '-p 3000:3000'
}
}
stage('Unit tests') {
steps {
unstash 'node_modules'
sh 'npm run-script test'
}
steps {
unstash 'node_modules'
sh 'npm run-script lint'
stash includes: 'node_modules/', name: 'node_modules'
}
}
stage('Unit tests') {
agent {
docker {
image 'node:lts-bullseye-slim'
args '-p 3000:3000'
}
}
steps {
unstash 'node_modules'
sh 'npm run-script test'
stash includes: 'node_modules/', name: 'node_modules'
}
}
}