fixed
Some checks failed
gitea_dndsources/schedulord-frontend/pipeline/head There was a failure building this commit

This commit is contained in:
Jesse James Isler 2022-06-09 11:12:37 +02:00
parent 81e3310eef
commit 52d08e5326

12
Jenkinsfile vendored
View File

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