From 8a913bdeb2a586bbe2d2bda38f8f79c1cc712fbb Mon Sep 17 00:00:00 2001 From: Lauren Tan Date: Fri, 7 Mar 2025 16:24:23 -0500 Subject: [PATCH] [ci] Fix incorrect condition Fixes an incorrect condition for running tests in the compiler workspace. --- .github/workflows/compiler_typescript.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/compiler_typescript.yml b/.github/workflows/compiler_typescript.yml index 65fb789ecc..d3b9517c8e 100644 --- a/.github/workflows/compiler_typescript.yml +++ b/.github/workflows/compiler_typescript.yml @@ -96,4 +96,4 @@ jobs: - run: xvfb-run -a yarn workspace ${{ matrix.workspace_name }} test if: runner.os == 'Linux' && matrix.workspace_name == 'react-forgive' - run: yarn workspace ${{ matrix.workspace_name }} test - if: runner.os != 'Linux' && matrix.workspace_name != 'react-forgive' + if: matrix.workspace_name != 'react-forgive'