Skip to content

Commit

Permalink
ci: add a debug env step that always runs
Browse files Browse the repository at this point in the history
  • Loading branch information
balupton committed Oct 28, 2024
1 parent c4d1e1f commit 4937d23
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/dorothy-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,19 @@ concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
debug-env:
runs-on: ubuntu-latest
steps:
- name: 'Debug Environment'
shell: bash -leo pipefail {0}
run: |
set -xv
# output github context
cat <<-EOF
${{ toJson(github) }}
EOF
# output env
env
login-shells-and-linting:
if: github.event_name == 'push' || ( github.event_name == 'pull_request' && (toJSON(github.event.pull_request.requested_reviewers) != '[]' || toJSON(github.event.pull_request.requested_teams) != '[]' ) )
runs-on: ubuntu-latest
Expand Down

0 comments on commit 4937d23

Please sign in to comment.