Skip to content
This repository was archived by the owner on Jun 22, 2023. It is now read-only.

Commit 966cca5

Browse files
author
Boris Cherny
committed
drop support for node v10
1 parent 59747b1 commit 966cca5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ on: [push, pull_request]
55
jobs:
66
build:
77
runs-on: ubuntu-latest
8-
8+
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
node-version: [10.x, 12.x, 13.x]
12+
node-version: [12.x, 14.x, 16.x, 17.x, 18.x]
1313
os: [ubuntu-latest, windows-latest, macOS-latest]
1414

1515
steps:
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
node-version: ${{ matrix.node-version }}
2121
- name: Install dependencies
22-
run: yarn install --ignore-engines --verbose
22+
run: yarn install --ignore-engines --verbose
2323
- name: Run tests
2424
run: yarn test
2525
env:

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"typings": "dist/src/index.d.ts",
1010
"engines": {
11-
"node": ">=10.0.0"
11+
"node": ">=12.0.0"
1212
},
1313
"scripts": {
1414
"build": "npm run lint && npm run clean && npm run build:browser && npm run build:server",

0 commit comments

Comments
 (0)