multy-stub/Jenkinsfile

37 lines
484 B
Plaintext
Raw Normal View History

2023-08-01 13:14:02 +03:00
pipeline {
agent {
docker {
2023-08-01 13:15:12 +03:00
image 'node:18'
2023-08-01 13:14:02 +03:00
}
}
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('clean-all') {
steps {
sh 'rm -rf .[!.]*'
sh 'rm -rf ./*'
sh 'ls -a'
}
}
}
}