Files
gitea-themes/Jenkinsfile
Vulpovile 8d21ce7bec
Some checks failed
Flare Microsystems Git/FlarePublic/gitea-themes/pipeline/pr-master There was a failure building this commit
Fix jenkinsfile
2025-01-11 15:41:27 -08:00

26 lines
438 B
Groovy

pipeline {
agent any
stages {
stage('Check Indentation') {
steps {
script {
// Check for spaces or mixed indentation
sh "./indentcheck.sh"
}
}
}
stage('Validate CSS Syntax') {
steps {
script {
sh 'stylelint ./**/*.css'
}
}
}
}
}