From c9509217ca7315347c8e064e5f3bf117ec59fbc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=ADdia=20Tarcza?= <100163235+diatrcz@users.noreply.github.com> Date: Mon, 9 Feb 2026 13:14:38 +0100 Subject: [PATCH 1/5] build: add status check for matrix strategies MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Lídia Tarcza <100163235+diatrcz@users.noreply.github.com> --- .github/workflows/build.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 771e5039..8441e06b 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -62,6 +62,20 @@ jobs: npm run lint npm run test-travis + results: + if: ${{ always() }} + runs-on: ibm-x86-64-small + name: Final Test Results + needs: [build] + steps: + - run: | + result="${{ needs.build.result }}" + if [[ $result == "success" || $result == "skipped" ]]; then + exit 0 + else + exit 1 + fi + publish-release: needs: build name: semantic-release From d285ee21bb92299f9dd4ff1dd831afd020b249b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=ADdia=20Tarcza?= <100163235+diatrcz@users.noreply.github.com> Date: Mon, 9 Feb 2026 13:19:01 +0100 Subject: [PATCH 2/5] build: add status check for matrix strategies MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Lídia Tarcza <100163235+diatrcz@users.noreply.github.com> --- .github/workflows/build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 8441e06b..5f9fd60b 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -66,10 +66,10 @@ jobs: if: ${{ always() }} runs-on: ibm-x86-64-small name: Final Test Results - needs: [build] + needs: [build-test] steps: - run: | - result="${{ needs.build.result }}" + result="${{ needs.build-test.result }}" if [[ $result == "success" || $result == "skipped" ]]; then exit 0 else From 0edd3bf0d60f23d5eeb4b5f17064432e73d41abb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=ADdia=20Tarcza?= <100163235+diatrcz@users.noreply.github.com> Date: Mon, 9 Feb 2026 13:26:01 +0100 Subject: [PATCH 3/5] build: add status check for matrix strategies MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Lídia Tarcza <100163235+diatrcz@users.noreply.github.com> --- .github/workflows/build.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 5f9fd60b..8104ca7a 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -64,12 +64,12 @@ jobs: results: if: ${{ always() }} - runs-on: ibm-x86-64-small + runs-on: ubuntu-latest name: Final Test Results - needs: [build-test] + needs: [build] steps: - run: | - result="${{ needs.build-test.result }}" + result="${{ needs.build.result }}" if [[ $result == "success" || $result == "skipped" ]]; then exit 0 else From a165e99d5ad82a9159b3298a2985e4812f7b57bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=ADdia=20Tarcza?= <100163235+diatrcz@users.noreply.github.com> Date: Mon, 9 Feb 2026 13:28:36 +0100 Subject: [PATCH 4/5] test: test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Lídia Tarcza <100163235+diatrcz@users.noreply.github.com> --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 8104ca7a..1e02acf4 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -43,7 +43,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: ['20', '22', '24'] + node-version: ['18', '20', '22'] steps: - name: Checkout repository From 4dd38b1ed5bc4e91a04af8f52390d19a8471dfd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=ADdia=20Tarcza?= <100163235+diatrcz@users.noreply.github.com> Date: Mon, 9 Feb 2026 13:30:58 +0100 Subject: [PATCH 5/5] Revert "test: test" This reverts commit a165e99d5ad82a9159b3298a2985e4812f7b57bc. --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 1e02acf4..8104ca7a 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -43,7 +43,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: ['18', '20', '22'] + node-version: ['20', '22', '24'] steps: - name: Checkout repository