CI: add debug job to check context variables
CI/CD / test-and-build (push) Failing after 1m48s Details
CI/CD / deploy (push) Has been skipped Details
CI/CD / debug-context (push) Successful in 5s Details

This commit is contained in:
Jeff Emmett 2026-04-01 00:38:12 -07:00
parent b5b95ae5e1
commit 4c648150b2
1 changed files with 11 additions and 0 deletions

View File

@ -39,6 +39,17 @@ jobs:
env:
NODE_OPTIONS: "--max-old-space-size=4096"
debug-context:
runs-on: ubuntu-latest
steps:
- name: Show context variables
run: |
echo "github.ref=${{ github.ref }}"
echo "github.ref_name=${{ github.ref_name }}"
echo "github.event_name=${{ github.event_name }}"
echo "github.repository=${{ github.repository }}"
echo "github.sha=${{ github.sha }}"
deploy:
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
needs: [test-and-build]