Add supported component validation check

This commit is contained in:
2026-01-18 12:27:20 +00:00
parent bd9482b6d4
commit a92c95c28a
3 changed files with 193 additions and 1 deletions

9
Jenkinsfile vendored
View File

@@ -68,6 +68,15 @@ pipeline {
}
}
}
stage('Component Registry Check') {
steps {
script {
nodejs(nodeJSInstallationName: "Node ${NODE_VERSION}") {
sh 'npm run components:validate'
}
}
}
}
}
}