From 48630d4b2aa457fc38c10f35a403a1fcbc104437 Mon Sep 17 00:00:00 2001 From: Masafumi Koba <473530+ybiquitous@users.noreply.github.com> Date: Fri, 30 Apr 2021 21:42:59 +0900 Subject: [PATCH] Add test against Node.js 16 Node.js 16 has been recently released. See also: - https://medium.com/the-node-js-collection/node-js-16-available-now-7f5099a97e70 - https://nodejs.org/en/blog/release/v16.0.0 - https://github.com/nodejs/Release#release-schedule According to the release schedule, Node.js 16 will be LTS on **2021-10-26**. --- .github/workflows/testing.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 2083db4aaa..3a86a3a00d 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -21,7 +21,7 @@ jobs: strategy: fail-fast: false matrix: - node: [10, 12, 14] + node: [10, 12, 14, 16] os: [ubuntu-latest, windows-latest, macos-latest] exclude: - os: ubuntu-latest