#7 check
Some checks failed
gitea-bro-js/journal.pl/pipeline/head There was a failure building this commit

This commit is contained in:
2024-03-29 11:39:32 +03:00
parent 5da3dddc2c
commit 5d051eae76

29
Jenkinsfile vendored
View File

@@ -1,29 +0,0 @@
// pipeline {
agent {
docker {
image 'node:18'
}
}
stages {
stage('install') {
steps {
sh 'node -v'
sh 'npm -v'
sh 'npm ci'
}
}
stage('eslint') {
steps {
sh 'npm run eslint'
}
}
stage('build') {
steps {
sh 'npm run build:prod'
}
}
}
// }