From 45a93e46fac374912dfbf4012e12976115d60c9b Mon Sep 17 00:00:00 2001 From: Daniel Freytag Date: Wed, 27 Nov 2024 20:50:57 +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 f159cf8..85ddbfe 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 glob '**/*.test.ts' | xargs npx tsx --test -- + run: npx --yes tsx --test *.test.ts - name: Test (Linux/macOS) if: matrix.os != 'windows-latest'