Skip to content

Commit 9c3c73a

Browse files
authored
fix(breaking-change): update for nodes 18 and 20 (#210)
1 parent a193efd commit 9c3c73a

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/daily.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ${{ matrix.os }}
1212
strategy:
1313
matrix:
14-
node-version: [14]
14+
node-version: [18.x]
1515
os: [ubuntu-latest]
1616

1717
steps:

.github/workflows/node.js.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ${{ matrix.os }}
1515
strategy:
1616
matrix:
17-
node-version: [14.x, 16.x]
17+
node-version: [18.x, 20.x]
1818
os: [ubuntu-latest, windows-latest]
1919

2020
steps:
@@ -33,4 +33,4 @@ jobs:
3333
if: success()
3434
uses: codecov/codecov-action@v3.1.1
3535
with:
36-
name: ${{ runner.os }} node.js ${{ matrix.node-version }}
36+
name: ${{ runner.os }} node.js ${{ matrix.node-version }}

.github/workflows/on-push-publish-to-npm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v2
1313
- uses: actions/setup-node@v1
1414
with:
15-
node-version: 16
15+
node-version: 18
1616
- run: npm install
1717
- run: npm test
1818
- uses: JS-DevTools/npm-publish@v1

.github/workflows/prerelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
git config user.email github-actions@github.com
2727
- uses: actions/setup-node@v1
2828
with:
29-
node-version: 16
29+
node-version: 18
3030
- run: |
3131
npm install
3232
npm test

.github/workflows/version-bump-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
git config user.email github-actions@github.com
2222
- uses: actions/setup-node@v1
2323
with:
24-
node-version: 16
24+
node-version: 18
2525
- run: |
2626
npm install
2727
npm test

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"typescript": "^5.1.6"
4141
},
4242
"engines": {
43-
"node": "^14.18 || ^16.13 || >=18"
43+
"node": ">=18"
4444
},
4545
"main": "src/index.js",
4646
"files": [

0 commit comments

Comments
 (0)