Skip to content

Commit 534f56c

Browse files
authored
feat(ci): add prebuilds for Node.js v16 (#87)
1 parent e5a690c commit 534f56c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
matrix:
1717
os: [macos-10.15, ubuntu-20.04, ubuntu-18.04, ubuntu-16.04, windows-2019, windows-2016]
18-
node: [12, 13, 14, 15]
18+
node: [12, 13, 14, 15, 16]
1919
steps:
2020
- name: Checkout repository
2121
uses: actions/checkout@v2
@@ -38,12 +38,12 @@ jobs:
3838
image: node:${{ matrix.node }}-alpine
3939
strategy:
4040
matrix:
41-
node: [12, 13, 14, 15]
41+
node: [12, 13, 14, 15, 16]
4242
steps:
4343
- name: Setup env with Node v${{ matrix.node }}
4444
run: |
4545
apk add --update
46-
apk add --no-cache ca-certificates git curl build-base python g++ make
46+
apk add --no-cache ca-certificates git curl build-base python3 g++ make
4747
4848
- name: Checkout repository
4949
uses: actions/checkout@v2

.github/workflows/release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
os: [macos-10.15, ubuntu-20.04, ubuntu-18.04, ubuntu-16.04, windows-2019, windows-2016]
12-
node: [12, 13, 14, 15]
12+
node: [12, 13, 14, 15, 16]
1313
steps:
1414
- name: Checkout repository
1515
uses: actions/checkout@v2
@@ -39,12 +39,12 @@ jobs:
3939
image: node:${{ matrix.node }}-alpine
4040
strategy:
4141
matrix:
42-
node: [12, 13, 14, 15]
42+
node: [12, 13, 14, 15, 16]
4343
steps:
4444
- name: Setup env with Node v${{ matrix.node }}
4545
run: |
4646
apk add --update
47-
apk add --no-cache ca-certificates git curl build-base python g++ make
47+
apk add --no-cache ca-certificates git curl build-base python3 g++ make
4848
4949
- name: Checkout repository
5050
uses: actions/checkout@v2

0 commit comments

Comments
 (0)