From 36b51855480e60ea7bf668ae06958a71a66b187e Mon Sep 17 00:00:00 2001 From: Daniel Freytag Date: Wed, 27 Nov 2024 20:56:48 +0100 Subject: [PATCH] fix: test on windows --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 85ddbfe..db1725b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -128,7 +128,7 @@ jobs: - name: Test (Windows) if: matrix.os == 'windows-latest' - run: npx --yes tsx --test *.test.ts + run: 'npx --yes glob "**/*.test.ts" | xargs npx tsx --test --' - name: Test (Linux/macOS) if: matrix.os != 'windows-latest'