From 331c2ee27444240fa6c1975ea1f54bf17b1f2711 Mon Sep 17 00:00:00 2001 From: legendecas Date: Wed, 28 Apr 2021 22:22:38 +0800 Subject: [PATCH] build: add Node.js v16.x to CI (#983) --- .github/workflows/ci-win.yml | 2 +- .github/workflows/ci.yml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-win.yml b/.github/workflows/ci-win.yml index 29e89fe47..4d8315c9b 100644 --- a/.github/workflows/ci-win.yml +++ b/.github/workflows/ci-win.yml @@ -7,7 +7,7 @@ jobs: timeout-minutes: 30 strategy: matrix: - node-version: [10.x, 12.x, 14.x, 15.x] + node-version: [10.x, 12.x, 14.x, 15.x, 16.x] os: - windows-latest - windows-2016 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2ad80e98b..83ab4e47e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,6 +12,7 @@ jobs: - node/12 - node/14 - node/15 + - node/16 compiler: - gcc - clang