From 69e7dcb873355bd3a328a3686b0cbe2eec4af4bb Mon Sep 17 00:00:00 2001 From: Mark Erikson Date: Sun, 2 Apr 2023 13:50:07 -0400 Subject: [PATCH] Ignore `FalseCJS` errors in the `arethetypeswrong` job --- .github/workflows/test.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7d24e37..443097a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -143,3 +143,10 @@ jobs: - name: Run test step working-directory: ./redux-toolkit/examples/publish-ci/${{ matrix.example }} run: yarn test + if: matrix.example != 'are-the-types-wrong' + + - name: Run test step + working-directory: ./redux-toolkit/examples/publish-ci/${{ matrix.example }} + # Ignore "FalseCJS" errors in the `attw` job + run: yarn test -n FalseCJS + if: matrix.example == 'are-the-types-wrong'