If you’re already using the Cypress’s @cypress-io/github-action, modify the step like this:
- name: Cypress run
uses: cypress-io/github-action@v5
with:
# 🙋♂️ Specify Replay Chromium
browser: replay-chromium
env:
REPLAY_API_KEY: ${{ secrets.RECORD_REPLAY_API_KEY }}
Add a new step to run after this Cypress GitHub Action for uploading the replays:
- name: Upload replays
if: always()
uses: replayio/[email protected]
with:
api-key: ${{ secrets.RECORD_REPLAY_API_KEY }}
Lastly, add your API key to your Secrets. To get an API key, create a new Replay team and generate an API key — instructions can be found here.
<aside> ⚠️ If you run into any problems, consult our troubleshooting guide here.
</aside>