Preview — in progress

Jenkins

Report test results from Jenkins pipelines to ReleaseQA using the CLI.

Jenkinsfile

stage('Test') {
  steps {
    sh 'npm test -- --reporter junit --outputFile results.xml'
  }
  post {
    always {
      withCredentials([string(credentialsId: 'releaseqa-api-key', variable: 'RELEASEQA_API_KEY')]) {
        sh 'npx @releaseqa/cli report --format junit --file results.xml'
      }
    }
  }
}

We're writing the long-form guide now

The full walkthrough for Jenkins is being written and reviewed. In the meantime, the Quick Start and Configuration pages cover the core setup that this guide builds on.

Need this page filled in sooner? Email support@releaseqa.com and we'll prioritise it.

Related