Preview — in progress
GitHub Actions
Run your tests in GitHub Actions and stream the results into ReleaseQA with a single extra step.
.github/workflows/test.yml
- name: Run tests
run: npm test -- --reporter junit --outputFile results.xml
- name: Report to ReleaseQA
if: always()
run: npx @releaseqa/cli report --format junit --file results.xml
env:
RELEASEQA_API_KEY: ${{ secrets.RELEASEQA_API_KEY }}We're writing the long-form guide now
The full walkthrough for GitHub Actions 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.