journal.pl/gitea-jenkins.yml
primakov 5d051eae76
Some checks failed
gitea-bro-js/journal.pl/pipeline/head There was a failure building this commit
#7 check
2024-03-29 11:39:32 +03:00

30 lines
357 B
YAML

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'
}
}
}
}