From 2ace3023a1482baee6253e5ce2fdcf1fe5df7655 Mon Sep 17 00:00:00 2001 From: Chris Markiewicz Date: Mon, 11 Nov 2024 13:46:33 -0500 Subject: [PATCH] chore(ci): Output debug info to assist in developing workflows --- .github/workflows/deno_tests.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/deno_tests.yml b/.github/workflows/deno_tests.yml index 5183cfda..031ee931 100644 --- a/.github/workflows/deno_tests.yml +++ b/.github/workflows/deno_tests.yml @@ -13,6 +13,20 @@ concurrency: cancel-in-progress: true jobs: + debug_info: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - run: git status + - run: git describe + - run: env + - name: Dump github context + run: echo $GITHUB_CONTEXT | jq . + env: + GITHUB_CONTEXT: ${{ toJson(github) }} + build: runs-on: ubuntu-latest steps: