Last active
June 18, 2024 22:10
-
-
Save ianjennings/a5922ec24d24e9b5ace1387f5db0dc88 to your computer and use it in GitHub Desktop.
Dashcam CLI CI/CD Quickstart. Full docs here: https://github.com/replayableio/cli. Example https://app.dashcam.io/replay/6672025573a096007414f1f5?share=JvnfKsDmO9pKsSMe0SUg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install the desktop app | |
# Configure log tracking: https://docs.dashcam.io/dashcam/configure/logs | |
npm install dashcam | |
dashcam auth ${{ secrets.DASHCAM_API_KEY }} | |
dashcam track --name=test --type=application --pattern="C:\Users\Switc\OneDrive\Desktop\*.log*" | |
dashcam start | |
Get-ChildItem C:\Windows\System32 | Tee-Object -FilePath 'C:\Users\Switc\OneDrive\Desktop\test.log' | |
# run the test | |
dashcam -t "My Test Result" -p --md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
New-Item C:\Users\Switc\AppData\Roaming\Dashcam\.replayable--do-no-update |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment