From 44def700bf56bf10b2b3e63e1695a082e38538d7 Mon Sep 17 00:00:00 2001 From: Vitrix Date: Mon, 9 Feb 2026 22:35:02 +0400 Subject: [PATCH] Update CI to test against Node 20, 22, 24 --- .github/workflows/test.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d2a33c51..dd98703f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,10 +9,14 @@ jobs: lint: runs-on: ubuntu-latest if: github.event_name == 'push' || (github.event_name == 'pull_request' && !startsWith(github.head_ref, 'renovate/')) + strategy: + matrix: + node: [20, 22, 24] + name: Node ${{ matrix.node }} steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: 18 + node-version: ${{ matrix.node }} - run: yarn - run: yarn lint