-
Notifications
You must be signed in to change notification settings - Fork 347
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: switch to debug module for verbose logs (#379)
This action uses the [debug](https://github.com/visionmedia/debug#readme) module to output additional verbose logs. You can see these debug messages by setting the following environment variable: ``` DEBUG: @cypress/github-action ``` You can set the environment variable using GitHub UI interface, or in the workflow file: ```yml - name: Cypress tests with debug logs uses: cypress-io/github-action@v2 env: DEBUG: '@cypress/github-action' ```
- Loading branch information
Showing
7 changed files
with
1,887 additions
and
692 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: example-debug | ||
on: push | ||
jobs: | ||
nightly: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Cypress debug logs 📝 | ||
uses: ./ | ||
env: | ||
DEBUG: '@cypress/github-action' | ||
with: | ||
working-directory: examples/basic |
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
Oops, something went wrong.