Skip to content

Commit d331ba0

Browse files
authored
[ci] Fix incorrect condition (facebook#32551)
Fixes an incorrect condition for running tests in the compiler workspace. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32551). * __->__ facebook#32551 * facebook#32550
1 parent 00aa004 commit d331ba0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/compiler_typescript.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,4 +96,4 @@ jobs:
9696
- run: xvfb-run -a yarn workspace ${{ matrix.workspace_name }} test
9797
if: runner.os == 'Linux' && matrix.workspace_name == 'react-forgive'
9898
- run: yarn workspace ${{ matrix.workspace_name }} test
99-
if: runner.os != 'Linux' && matrix.workspace_name != 'react-forgive'
99+
if: matrix.workspace_name != 'react-forgive'

0 commit comments

Comments
 (0)