Add human QA to your GitHub Actions workflow
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"}'