From b50dd51baeaad205a4b29ea3a1df8841c241a92e Mon Sep 17 00:00:00 2001 From: Elson Correia <13211046+ECorreia45@users.noreply.github.com> Date: Fri, 7 Aug 2026 11:10:54 -0400 Subject: [PATCH 1/3] ci: modernize Node test matrix --- .github/workflows/test.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index de6eecee..2f032e20 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,16 +12,14 @@ jobs: strategy: matrix: - node-version: [18.x, 20.x, 22.x, 24.x] - # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ + node-version: [22.x, 24.x] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v5 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v5 with: node-version: ${{ matrix.node-version }} cache: 'npm' - run: npm ci - - run: npm run lint - - run: npm test + - run: npm run build From 8e544c5a2b4a89e15361d0cbb340d80e63f76e0e Mon Sep 17 00:00:00 2001 From: Elson Correia <13211046+ECorreia45@users.noreply.github.com> Date: Fri, 7 Aug 2026 11:11:12 -0400 Subject: [PATCH 2/3] chore: require supported Node versions --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index f0f29508..95e5d3c1 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,8 @@ "version": "1.18.4", "description": "Reactive HTML Templating System", "engines": { - "node": ">=18.16.0" + "node": ">=22.13.0", + "npm": ">=10.0.0" }, "type": "module", "types": "./dist/types/index.d.ts", From e277fbc7b69da0a4dbe9154e02e605225d605b83 Mon Sep 17 00:00:00 2001 From: Elson Correia <13211046+ECorreia45@users.noreply.github.com> Date: Fri, 7 Aug 2026 11:22:18 -0400 Subject: [PATCH 3/3] ci: use current official Node actions --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2f032e20..53f9307f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,9 +15,9 @@ jobs: node-version: [22.x, 24.x] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v5 + uses: actions/setup-node@v7 with: node-version: ${{ matrix.node-version }} cache: 'npm'