Skip to content

Commit

Permalink
feat(ci): add prebuilds for Node.js v16 (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyranet committed May 6, 2021
1 parent e5a690c commit 534f56c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
os: [macos-10.15, ubuntu-20.04, ubuntu-18.04, ubuntu-16.04, windows-2019, windows-2016]
node: [12, 13, 14, 15]
node: [12, 13, 14, 15, 16]
steps:
- name: Checkout repository
uses: actions/checkout@v2
Expand All @@ -38,12 +38,12 @@ jobs:
image: node:${{ matrix.node }}-alpine
strategy:
matrix:
node: [12, 13, 14, 15]
node: [12, 13, 14, 15, 16]
steps:
- name: Setup env with Node v${{ matrix.node }}
run: |
apk add --update
apk add --no-cache ca-certificates git curl build-base python g++ make
apk add --no-cache ca-certificates git curl build-base python3 g++ make
- name: Checkout repository
uses: actions/checkout@v2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
os: [macos-10.15, ubuntu-20.04, ubuntu-18.04, ubuntu-16.04, windows-2019, windows-2016]
node: [12, 13, 14, 15]
node: [12, 13, 14, 15, 16]
steps:
- name: Checkout repository
uses: actions/checkout@v2
Expand Down Expand Up @@ -39,12 +39,12 @@ jobs:
image: node:${{ matrix.node }}-alpine
strategy:
matrix:
node: [12, 13, 14, 15]
node: [12, 13, 14, 15, 16]
steps:
- name: Setup env with Node v${{ matrix.node }}
run: |
apk add --update
apk add --no-cache ca-certificates git curl build-base python g++ make
apk add --no-cache ca-certificates git curl build-base python3 g++ make
- name: Checkout repository
uses: actions/checkout@v2
Expand Down

0 comments on commit 534f56c

Please sign in to comment.