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