We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 596ae0a commit 19ee187Copy full SHA for 19ee187
.github/workflows/benchmarks.yml
@@ -12,7 +12,7 @@ jobs:
12
- name: Setup Node.js
13
uses: actions/setup-node@v2
14
with:
15
- node-version: '14.x'
+ node-version: '16.x'
16
17
- name: Install npm deps
18
run: npm install
.github/workflows/test.yml
@@ -8,7 +8,7 @@ jobs:
8
9
strategy:
10
matrix:
11
- node-version: [12.x, 14.x, 16.x]
+ node-version: [16.x]
steps:
- uses: actions/checkout@v2
package.json
@@ -4,6 +4,9 @@
4
"description": "Serializes data to transfer fewer bytes over the network",
5
"main": "index.js",
6
"types": "index.d.ts",
7
+ "engines": {
+ "node": ">=16.0.0"
+ },
"scripts": {
"test": "jest --coverage",
"bench": "node benchmarks/run.js"
0 commit comments