Skip to content

Commit a2d1486

Browse files
committed
Removed support for node.js 18
1 parent 9b50d23 commit a2d1486

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

.github/workflows/test.workflow.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,18 @@ concurrency:
1515

1616
jobs:
1717
tests:
18-
runs-on: ${{ matrix.os }}
18+
runs-on: ubuntu-latest
1919
if: github.event.pull_request.draft == false
2020

21-
strategy:
22-
matrix:
23-
os: [ubuntu-latest]
24-
node: [18, 20]
25-
2621
steps:
2722
- name: Check out repository
2823
uses: actions/checkout@v4
2924

3025
- name: Install Node.js
3126
uses: actions/setup-node@v4
3227
with:
33-
node-version: ${{ matrix.node }}
28+
node-version: 20
29+
registry-url: 'https://registry.npmjs.org'
3430

3531
- name: Update NPM to latest
3632
run: npm install npm@latest -g

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"types": "./dist/index.d.ts",
66
"type": "module",
77
"engines": {
8-
"node": ">=18.0.0"
8+
"node": ">=20.0.0"
99
},
1010
"dependencies": {
1111
"adm-zip": "0.5.16",

0 commit comments

Comments
 (0)