From 3d515f5ff4d9aac1d868bcb6b6d6a67381d8d092 Mon Sep 17 00:00:00 2001 From: "E. Lynette Rayle" Date: Wed, 28 May 2025 20:23:32 +0000 Subject: [PATCH] Show the results of the check in step Verify no unommitted files --- .github/workflows/test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a893138..b9ece87 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,5 +28,7 @@ jobs: run: npm rebuild && npm run all - name: Verify no uncommitted files - run: '[ -z "$(git status --porcelain=v1 2>/dev/null)" ]' + run: | + echo git status --porcelain=v1 + '[ -z "$(git status --porcelain=v1 2>/dev/null)" ]' shell: bash