diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ed93690ba74..557909c92a7 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -94,10 +94,10 @@ jobs: restore-keys: | ${{ runner.os }}-${{matrix.node-version}}-${{matrix.graphql_version}}-jest- - name: Test - if: ${{ matrix.node-version === 20 }} + if: ${{ matrix.node-version == 20 }} run: yarn test --ci - name: Test - if: ${{ matrix.node-version !== 20 }} + if: ${{ matrix.node-version != 20 }} uses: nick-fields/retry@v2 with: timeout_minutes: 10