From 279741379923111225ce8a26cd435b55d0c20746 Mon Sep 17 00:00:00 2001 From: LongYinan Date: Wed, 17 Jun 2020 20:39:30 +0800 Subject: [PATCH] chore: drop support for node@13 --- .github/workflows/linux-musl.yaml | 2 +- .github/workflows/linux.yaml | 2 +- .github/workflows/macos.yaml | 2 +- .github/workflows/windows.yaml | 2 +- README.md | 8 ++++---- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/linux-musl.yaml b/.github/workflows/linux-musl.yaml index c5262a4d..b6acf585 100644 --- a/.github/workflows/linux-musl.yaml +++ b/.github/workflows/linux-musl.yaml @@ -8,7 +8,7 @@ jobs: strategy: fail-fast: false matrix: - node: ['10', '12', '13', '14'] + node: ['10', '12', '14'] runs-on: ubuntu-latest steps: diff --git a/.github/workflows/linux.yaml b/.github/workflows/linux.yaml index a7134b37..c2891f2f 100644 --- a/.github/workflows/linux.yaml +++ b/.github/workflows/linux.yaml @@ -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 diff --git a/.github/workflows/macos.yaml b/.github/workflows/macos.yaml index 6c11513b..6df1f0f9 100644 --- a/.github/workflows/macos.yaml +++ b/.github/workflows/macos.yaml @@ -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 diff --git a/.github/workflows/windows.yaml b/.github/workflows/windows.yaml index 5eb43aae..b6fd81dd 100644 --- a/.github/workflows/windows.yaml +++ b/.github/workflows/windows.yaml @@ -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 diff --git a/README.md b/README.md index 3cacd105..d79319b7 100644 --- a/README.md +++ b/README.md @@ -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 | ⛔️ |