From 723e7726e261ee31df01046dd25153ce7e55ef96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20Rom=C3=A1n?= Date: Wed, 28 Apr 2021 19:12:21 +0200 Subject: [PATCH 1/3] feat(ci): add prebuilds for Node.js v16 --- .github/workflows/build.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fe6c870..6a66b5a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 @@ -38,7 +38,7 @@ 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: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f56a42c..f7ab832 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 @@ -39,7 +39,7 @@ 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: | From 6fbdcdffd04b823503fca083d90ec30a2bc0fdb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20Rom=C3=A1n?= Date: Sat, 1 May 2021 22:41:58 +0200 Subject: [PATCH 2/3] chore: install python3 instead of python --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f7ab832..98f301f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -44,7 +44,7 @@ jobs: - 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 From 710db060084b33574664e24a2287a3634053675b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20Rom=C3=A1n?= Date: Sat, 1 May 2021 22:44:05 +0200 Subject: [PATCH 3/3] chore: install python3 instead of python --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6a66b5a..63cb283 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -43,7 +43,7 @@ jobs: - 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