Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,16 @@ jobs:
with:
target: ${{ matrix.target }}

- name: Ensure no unexpected file changes after build
if: ${{ matrix.target == 'x86_64-unknown-linux-gnu' }}
run: |
if [[ -n "$(git status --porcelain)" ]]; then
echo "::error::Unexpected file changes detected after build"
git status
git diff
exit 1
fi

- name: Check TypeScript types
if: ${{ matrix.target == 'x86_64-unknown-linux-gnu' }}
run: pnpm tsgo
Expand Down
Loading