From e33573e503f9ea7c92fd6c5ccbe578ed0eddab8d Mon Sep 17 00:00:00 2001 From: "artur.filippovskii" Date: Thu, 4 Sep 2025 17:17:28 +0300 Subject: [PATCH] test: Add Node 24 to CI matrix --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2e680a7..2936758 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,11 +13,13 @@ jobs: - i18n_extract - lint - test + node: [20, 24] + continue-on-error: ${{ matrix.node == 24 }} steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version-file: '.nvmrc' + node-version: ${{ matrix.node }} - run: make requirements - run: make test NPM_TESTS=build - run: make test NPM_TESTS=${{ matrix.npm-test }}