From 66daccbcef78498257b8176efafc1a9b3c02bb34 Mon Sep 17 00:00:00 2001 From: Christoph Knittel Date: Tue, 22 Oct 2024 20:03:24 +0200 Subject: [PATCH] Check for diffs in tests folder after running tests (#7119) --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 502f44e42d..8a1bdfda01 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -317,6 +317,9 @@ jobs: - name: Run tests run: node scripts/test.js -all + - name: Check for diffs in tests folder + run: git diff --ignore-cr-at-eol --exit-code tests + - name: Run gentype tests if: runner.os != 'Windows' run: make -C tests/gentype_tests/typescript-react-example clean test