multy-stub/Jenkinsfile
Primakov Alexandr Alexandrovich a2b2fa3b6f fix
2024-10-16 11:20:20 +03:00

46 lines
622 B
Groovy

pipeline {
agent {
docker {
image 'node:18'
}
}
stages {
stage('install') {
steps {
sh 'node -v'
sh 'npm -v'
sh 'npm install'
}
}
stage('eslint') {
steps {
sh 'npm run eslint'
}
}
stage('test') {
steps {
sh 'npm run test:start'
}
}
stage('archiving') {
steps {
script {
archiveArtifacts artifacts: 'coverage/*/**'
}
}
}
stage('clean-all') {
steps {
sh 'rm -rf .[!.]*'
sh 'rm -rf ./*'
sh 'ls -a'
}
}
}
}