Skip to content

Commit 62b9084

Browse files
authored
Merge pull request #108 from hertzg/fix-node-version
fix: node version & ci updates
2 parents 4766b02 + 42587fd commit 62b9084

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

.github/workflows/pull-request.yaml

+6-1
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,13 @@ jobs:
123123
- macos-latest
124124
node: # https://nodejs.org/en/about/releases/
125125
- '*' # Current
126-
- '12' # Active LTS
126+
- '14' # Active LTS
127+
# TODO(hertzg): Uncomment once v12.20.0 is released (ref: #93)
128+
# - '12' # Active LTS
127129
- '10' # Maintenance LTS
130+
exclude:
131+
- node: 12.19.0 # See github issue #93
132+
128133
fail-fast: false
129134

130135
steps:

.github/workflows/release.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ jobs:
1515
- macos-latest
1616
node: # https://nodejs.org/en/about/releases/
1717
- '*' # Current
18-
- '12' # Active LTS
18+
- '14' # Active LTS
19+
# TODO(hertzg): Uncomment once v12.20.0 is released (ref: #93)
20+
# - '12' # Active LTS
1921
- '10' # Maintenance LTS
2022
fail-fast: false
2123

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
[npm_url]: https://www.npmjs.com/package/net-keepalive
1313
[npm_shield]: https://img.shields.io/npm/v/net-keepalive.svg?style=flat
1414
[node_url]: https://dist.nodejs.org
15-
[node_shield]: https://img.shields.io/badge/node-%3E%3D4-green.svg
15+
[node_shield]: https://img.shields.io/badge/node-%3E%3D10.20.0-green.svg
1616
[os_shield]: https://img.shields.io/badge/os-linux%2Cosx%2Cbsd-green.svg
1717
[travis_url]: https://travis-ci.org/hertzg/node-net-keepalive
1818
[travis_shield]: https://travis-ci.org/hertzg/node-net-keepalive.svg?branch=master

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"*.d.ts"
2929
],
3030
"engines": {
31-
"node": ">=4"
31+
"node": ">=10.20.0"
3232
},
3333
"husky": {
3434
"hooks": {
@@ -53,7 +53,7 @@
5353
"bugs": {
5454
"url": "https://github.com/hertzg/node-net-keepalive/issues"
5555
},
56-
"homepage": "https://github.com/hertzg/node-net-keepalive",
56+
"homepage": "https://hertzg.github.io/node-net-keepalive/",
5757
"dependencies": {
5858
"ffi-napi": "^3.0.1",
5959
"ref-napi": "^3.0.0"

0 commit comments

Comments
 (0)