Skip to content

Commit 8ee4820

Browse files
committed
chore: advertise Node.js 14x as the minimum supported version
1 parent b03fecd commit 8ee4820

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/tests.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
strategy:
1414
matrix:
1515
os: [ubuntu-latest]
16-
node: [16, 18]
16+
node: [14, 16, 18, 20, 22, 24]
1717

1818
steps:
19-
- uses: actions/checkout@v5
20-
- name: Use Node.js ${{ matrix.node }}
21-
uses: actions/setup-node@v6
22-
with:
23-
node-version: ${{ matrix.node }}
24-
- run: npm i
25-
- run: npm test
19+
- uses: actions/checkout@v5
20+
- name: Use Node.js ${{ matrix.node }}
21+
uses: actions/setup-node@v6
22+
with:
23+
node-version: ${{ matrix.node }}
24+
- run: npm ci
25+
- run: npm test

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"CHANGELOG.md"
3737
],
3838
"engines": {
39-
"node": ">=0.4.0"
39+
"node": ">=14.17.0"
4040
},
4141
"scripts": {
4242
"build": "npm run clean && tsc && tsc -p tsconfig.esm.json && npm run build:browser",

0 commit comments

Comments
 (0)