From e092eff490c5dfe34a7b5201ca82b2a748f15a1f Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Wed, 1 Mar 2023 10:15:10 -0500 Subject: [PATCH] Only run unit tests on linux for PRs Signed-off-by: Sebastian Malton --- .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 47567ac44b..4f43c1a343 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -57,7 +57,7 @@ jobs: - run: npm run test:unit name: Run tests - if: ${{ matrix.type == 'unit' }} + if: ${{ runner.os == 'Linux' && matrix.type == 'unit' }} - name: Install integration test dependencies id: minikube