Skip to content

Commit 5b5140e

Browse files
committedMay 5, 2021
Add Node.js 16 to CI, remove 15
1 parent 2bf76b5 commit 5b5140e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed
 

‎.github/workflows/ci.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
node: [10, 12, 14, 15]
16+
node: [10, 12, 14, 16]
1717
steps:
1818
- uses: actions/setup-node@v1
1919
with:
@@ -33,7 +33,7 @@ jobs:
3333
runs-on: windows-latest
3434
strategy:
3535
matrix:
36-
node: [10, 12, 14, 15]
36+
node: [10, 12, 14, 16]
3737
steps:
3838
- uses: actions/setup-node@v1
3939
with:
@@ -55,7 +55,7 @@ jobs:
5555
runs-on: macos-latest
5656
strategy:
5757
matrix:
58-
node: [10, 12, 14, 15]
58+
node: [10, 12, 14, 16]
5959
steps:
6060
- uses: actions/setup-node@v1
6161
with:
@@ -76,7 +76,7 @@ jobs:
7676
steps:
7777
- uses: actions/setup-node@v1
7878
with:
79-
node-version: 12
79+
node-version: 14
8080
- uses: actions/checkout@v2
8181
- name: Install
8282
run: npm install --ignore-scripts

‎CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ project adheres to [Semantic Versioning](http://semver.org/).
1212
* Upgrade node-pre-gyp to 1.0.0. Note that if you are using special node-pre-gyp
1313
features like `node_pre_gyp_accessKeyId`, you may need to make changes to your
1414
installation procedure. See https://github.com/mapbox/node-pre-gyp/blob/master/CHANGELOG.md#100.
15-
* Add Node.js v15 to CI.
15+
* Add Node.js v16 to CI.
1616
* The C++ class method `nBytes()` now returns a size_t. (Because this is a C++
1717
method only, this is not considered a breaking change.)
1818
* Export type NodeCanvasRenderingContext2D so you can pass the current context

0 commit comments

Comments
 (0)
Please sign in to comment.