From 401410505e46c4242446eb540c6bf4e1ef78102a Mon Sep 17 00:00:00 2001 From: Florian PAUL Date: Wed, 30 Aug 2023 17:32:31 +0200 Subject: [PATCH] ci: dont run windows ut on branch builds --- .github/workflows/code-check.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/code-check.yml b/.github/workflows/code-check.yml index 6778f187dd..6abf99f065 100644 --- a/.github/workflows/code-check.yml +++ b/.github/workflows/code-check.yml @@ -26,13 +26,8 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest] - experimental: [false] - include: - - os: windows-latest - experimental: true + os: [ubuntu-latest ${{ github.event_name != 'push' && ', windows-latest' || '' }} ] runs-on: ${{ matrix.os }} - continue-on-error: ${{ matrix.experimental }} env: NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }} steps: