From 54faa24efe3f7a69e2b33b006c3e7364f8b2b8a9 Mon Sep 17 00:00:00 2001 From: William Killerud Date: Thu, 11 Jul 2024 15:36:31 +0200 Subject: [PATCH] chore: skip testing the types on Windows --- .github/workflows/test.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bc99846..47e0bfa 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -35,4 +35,9 @@ jobs: run: npm run types - name: npm test + if: runner.os != 'Windows' run: npm test + + - name: npm test + if: runner.os == 'Windows' + run: npm run test:unit