Skip to content
This repository was archived by the owner on Feb 26, 2025. It is now read-only.

Commit 19be9e1

Browse files
authored
feat: support building for node 13 and 14 (#118)
1 parent c8b0e31 commit 19be9e1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/any-pr.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
node-version: [10.x, 11.x, 12.x]
11+
node-version: [10.x, 11.x, 12.x, 13.x, 14.x]
1212
steps:
1313
- uses: actions/checkout@v1
1414
- name: Use Node.js ${{ matrix.node-version }}

.github/workflows/push-master.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
node-version: [10.x, 11.x, 12.x]
15+
node-version: [10.x, 11.x, 12.x, 13.x, 14.x]
1616
steps:
1717
- uses: actions/checkout@v2
1818
- uses: actions/setup-node@v1

.github/workflows/push-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ${{matrix.os}}
1313
strategy:
1414
matrix:
15-
node-version: [10.x, 11.x, 12.x]
15+
node-version: [10.x, 11.x, 12.x, 13.x, 14.x]
1616
os: [windows-latest, macos-latest, ubuntu-latest]
1717
exclude:
1818
# exclude windows node 11 due to neon-sys bug

0 commit comments

Comments
 (0)