debug
All checks were successful
it-academy/dry-wash-pl/pipeline/head This commit looks good

This commit is contained in:
Primakov Alexandr Alexandrovich
2025-02-20 13:36:27 +03:00
parent 69251745fa
commit dd612d662c
8 changed files with 21 additions and 25 deletions

30
Jenkinsfile vendored
View File

@@ -30,25 +30,21 @@ pipeline {
}
}
stage('checks') {
parallel {
stage('eslint') {
steps {
sh 'npm run eslint'
}
}
stage('eslint') {
steps {
sh 'npm run eslint'
}
}
stage('test') {
steps {
sh 'npm run test'
}
}
stage('test') {
steps {
sh 'npm run test'
}
}
stage('build') {
steps {
sh 'npm run build'
}
}
stage('build') {
steps {
sh 'npm run build'
}
}