From fe0edcd0815f3a32fae5add5a72cf767d424bd33 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Tue, 9 Jul 2024 15:32:07 +0100 Subject: [PATCH] Stop testing on Node 21 as it is EOL (#4308) Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- .github/workflows/tests.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a23c2772f..dc8adca6d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,7 +18,7 @@ jobs: strategy: matrix: specs: [integ, unit] - node: ["lts/*", 21, 22] + node: ["lts/*", 22] steps: - name: Checkout code uses: actions/checkout@v4 @@ -63,6 +63,16 @@ jobs: coverage !coverage/lcov-report + # Dummy completion job to simplify branch protections + jest-complete: + name: Jest tests + needs: jest + if: always() + runs-on: ubuntu-latest + steps: + - if: needs.jest.result != 'skipped' && needs.jest.result != 'success' + run: exit 1 + matrix-react-sdk: name: Downstream test matrix-react-sdk if: github.event_name == 'merge_group'