Skip to content

Commit f6c7f74

Browse files
author
Darcy Ye
authored
chore: relax node engine range and bump version to 2.9.3 (#88)
* chore: relax node engine range and bump version to 2.9.3 * ci: run checks on Node 18, 20, 22, 24 and 25
1 parent 6f016b9 commit f6c7f74

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/main.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ on:
99
jobs:
1010
main:
1111
runs-on: ubuntu-latest
12+
strategy:
13+
fail-fast: false
14+
matrix:
15+
node-version: ['18', '20', '22', '24', '25']
1216

1317
steps:
1418
- uses: actions/checkout@v4
@@ -17,7 +21,7 @@ jobs:
1721
uses: silverhand-io/actions-node-pnpm-run-steps@v5
1822
with:
1923
pnpm-version: '10'
20-
node-version: '24'
24+
node-version: ${{ matrix.node-version }}
2125

2226
- name: Lint
2327
run: pnpm lint

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@silverhand/essentials",
3-
"version": "2.9.2",
3+
"version": "2.9.3",
44
"description": "The missing essentials for TypeScript (and JavaScript).",
55
"repository": "git@github.com:silverhand-io/essentials.git",
66
"author": "Silverhand Inc.",
@@ -43,7 +43,7 @@
4343
"typescript": "^5.3.3"
4444
},
4545
"engines": {
46-
"node": "^18.12.0 || ^20.9.0 || ^22.0.0 || ^24.0.0",
46+
"node": ">=18.12.0",
4747
"pnpm": "^10.0.0"
4848
},
4949
"prettier": "@silverhand/eslint-config/.prettierrc",

0 commit comments

Comments
 (0)