Work damnit!
Some checks failed
gitea_dndsources/schedulord-frontend/pipeline/head There was a failure building this commit
Some checks failed
gitea_dndsources/schedulord-frontend/pipeline/head There was a failure building this commit
This commit is contained in:
parent
b988842aa0
commit
81e3310eef
18
Jenkinsfile
vendored
18
Jenkinsfile
vendored
@ -1,22 +1,37 @@
|
||||
pipeline {
|
||||
agent any
|
||||
agent none
|
||||
|
||||
stages {
|
||||
stage('Install') {
|
||||
agent {
|
||||
docker {
|
||||
image 'node:lts-bullseye-slim'
|
||||
args '-p 3000:3000'
|
||||
}
|
||||
}
|
||||
steps {
|
||||
sh 'npm install'
|
||||
stash includes: 'node_modules/', name: 'node_modules'
|
||||
}
|
||||
}
|
||||
|
||||
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('Unit tests') {
|
||||
steps {
|
||||
unstash 'node_modules'
|
||||
sh 'npm run-script test'
|
||||
}
|
||||
}
|
||||
@ -25,6 +40,7 @@ pipeline {
|
||||
|
||||
stage('Build') {
|
||||
steps {
|
||||
unstash 'node_modules'
|
||||
sh 'npm run-script build'
|
||||
stash includes: 'dist/', name: 'dist'
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user