diff --git a/_assets/ci/Jenkinsfile.tests b/_assets/ci/Jenkinsfile.tests index 3d59fca11..f7c22ec4d 100644 --- a/_assets/ci/Jenkinsfile.tests +++ b/_assets/ci/Jenkinsfile.tests @@ -99,6 +99,18 @@ pipeline { } } } + stage('Commit') { + environment { + BASE_BRANCH = "${env.BASE_BRANCH}" + } + when { // https://github.com/status-im/status-go/issues/4993#issuecomment-2022685544 + expression { !isTestNightlyJob() } + } + steps { script { + nix.shell('make commit-check', pure: false) + } } + } + stage('Lint') { steps { script { nix.shell('make lint', pure: true)