TestMyVibes + GitHub Actions

Add human QA to your GitHub Actions workflow

Integration Setup

Add TestMyVibes as a step in your GitHub Actions CI/CD pipeline.

# .github/workflows/test.yml
name: Deploy & Test
on: [push]
jobs:
  deploy-and-test:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - run: npm run deploy
      - name: Trigger Human QA
        run: |
          curl -X POST https://testmyvibes.com/api/v1/jobs \
            -H "Authorization: Bearer ${{ secrets.TMV_API_KEY }}" \
            -H "Content-Type: application/json" \
            -d '{"url":"$DEPLOY_URL","title":"CI Test","description":"Post-deploy smoke test","jobType":"smoke_test"}'

Why Use TestMyVibes with GitHub Actions?

CI/CD Native
Fits right into your existing GitHub Actions pipeline.
Status Checks
Block merges until human QA passes.
Full API Access
Use the REST API for complete automation.
Start Testing with GitHub Actions