chore: drop support for node@13
This commit is contained in:
parent
422682c8b8
commit
2797413799
5 changed files with 8 additions and 8 deletions
2
.github/workflows/linux-musl.yaml
vendored
2
.github/workflows/linux-musl.yaml
vendored
|
@ -8,7 +8,7 @@ jobs:
|
|||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
node: ['10', '12', '13', '14']
|
||||
node: ['10', '12', '14']
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
|
|
2
.github/workflows/linux.yaml
vendored
2
.github/workflows/linux.yaml
vendored
|
@ -7,7 +7,7 @@ jobs:
|
|||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
node: ['10', '12', '13', '14']
|
||||
node: ['10', '12', '14']
|
||||
|
||||
name: stable - x86_64-unknown-linux-gnu - node@${{ matrix.node }}
|
||||
runs-on: ubuntu-latest
|
||||
|
|
2
.github/workflows/macos.yaml
vendored
2
.github/workflows/macos.yaml
vendored
|
@ -7,7 +7,7 @@ jobs:
|
|||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
node: ['10', '12', '13', '14']
|
||||
node: ['10', '12', '14']
|
||||
|
||||
name: stable - x86_64-apple-darwin - node@${{ matrix.node }}
|
||||
runs-on: macos-latest
|
||||
|
|
2
.github/workflows/windows.yaml
vendored
2
.github/workflows/windows.yaml
vendored
|
@ -7,7 +7,7 @@ jobs:
|
|||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
node: ['10', '12', '13', '14']
|
||||
node: ['10', '12', '14']
|
||||
target:
|
||||
- x86_64-pc-windows-msvc
|
||||
|
||||
|
|
|
@ -16,9 +16,9 @@
|
|||
|
||||
## NodeJS
|
||||
|
||||
| Node10 | Node 12 | Node13 | Node14 |
|
||||
| ------ | ------- | ------ | ------ |
|
||||
| ✓ | ✓ | ✓ | ✓ |
|
||||
| Node10 | Node 12 | Node14 |
|
||||
| ------ | ------- | ------ |
|
||||
| ✓ | ✓ | ✓ |
|
||||
|
||||
A minimal library for building compiled Node add-ons in Rust.
|
||||
|
||||
|
@ -195,7 +195,7 @@ npm test
|
|||
| [napi_is_array](https://nodejs.org/api/n-api.html#n_api_napi_is_array) | 1 | v8.0.0 | ✅ |
|
||||
| [napi_is_arraybuffer](https://nodejs.org/api/n-api.html#n_api_napi_is_arraybuffer) | 1 | v8.0.0 | ✅ |
|
||||
| [napi_is_buffer](https://nodejs.org/api/n-api.html#n_api_napi_is_buffer) | 1 | v8.0.0 | ✅ |
|
||||
| [napi_is_date](https://nodejs.org/api/n-api.html#n_api_napi_is_date) | 1 | v8.0.0 | ⛔️ |
|
||||
| [napi_is_date](https://nodejs.org/api/n-api.html#n_api_napi_is_date) | 1 | v8.0.0 | ✅ |
|
||||
| [napi_is_error](https://nodejs.org/api/n-api.html#n_api_napi_is_error_1) | 1 | v8.0.0 | ⛔️ |
|
||||
| [napi_is_typedarray](https://nodejs.org/api/n-api.html#n_api_napi_is_typedarray) | 1 | v8.0.0 | ⛔️ |
|
||||
| [napi_is_dataview](https://nodejs.org/api/n-api.html#n_api_napi_is_dataview) | 1 | v8.3.0 | ⛔️ |
|
||||
|
|
Loading…
Reference in a new issue