Skip to content

Commit

Permalink
TEMP: debug the clean working directory CI step
Browse files Browse the repository at this point in the history
  • Loading branch information
mcintyre94 committed Nov 27, 2024
1 parent 411091a commit 0f29ccc
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,12 @@ jobs:
run: pnpm run test

- name: Ensure working directory is clean
run: test -z "$(git status --porcelain)"
run: |
echo "Git Status:"
git status
echo "\nDetailed changes:"
git diff
test -z "$(git status --porcelain)"
release:
name: Release
Expand Down

0 comments on commit 0f29ccc

Please sign in to comment.