add test stage to Jenkins (#85)
Some checks failed
it-academy/dry-wash-pl/pipeline/pr-main There was a failure building this commit
it-academy/dry-wash-pl/pipeline/head There was a failure building this commit

This commit is contained in:
RustamRu 2025-02-16 11:13:32 +03:00
parent cf6b8ebd51
commit 73d649f519

6
Jenkinsfile vendored
View File

@ -38,6 +38,12 @@ pipeline {
} }
} }
stage('test') {
steps {
sh 'npm run test'
}
}
stage('build') { stage('build') {
steps { steps {
sh 'npm run build' sh 'npm run build'