Skip to content

Commit acdb055

Browse files
committed
TEMP: debug the clean working directory CI step
1 parent 3faacda commit acdb055

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,12 @@ jobs:
6363
run: pnpm run test
6464

6565
- name: Ensure working directory is clean
66-
run: test -z "$(git status --porcelain)"
66+
run: |
67+
echo "Git Status:"
68+
git status
69+
echo "\nDetailed changes:"
70+
git diff
71+
test -z "$(git status --porcelain)"
6772
6873
release:
6974
name: Release

0 commit comments

Comments
 (0)