From f4bad8853e45224339dcd243bdbc27e68a540b0f Mon Sep 17 00:00:00 2001 From: Chris Freels Date: Wed, 1 May 2024 16:00:10 -0500 Subject: [PATCH] adding debugging --- .github/workflows/build.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f3a74d0e1..1bc1a836b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,6 +21,19 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v3 + + - name: Print environment info + run: | + echo "Printing environment variables..." + env + echo "Checking Node version..." + node --version + echo "Checking npm version..." + npm --version + echo "Checking Rust setup..." + rustup show + cargo --version + rustc --version - name: Install dependencies with npm ci run: npm ci