From fff30823abdcc1f8aa5d22d6610626a83e74692f Mon Sep 17 00:00:00 2001 From: Darren Eng Date: Tue, 7 Sep 2021 16:11:51 -0700 Subject: [PATCH] pin node version to 16.8 for now https://github.com/nodejs/node/issues/40030 --- .github/workflows/test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 32fe0c27f..c2b785232 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,7 +16,9 @@ jobs: strategy: matrix: - node-version: [12.x, 14.x, 16.x] + # TODO: switch back to 16.x when this issue is resolved with 16.9 + # https://github.com/nodejs/node/issues/40030 + node-version: [12.x, 14.x, 16.8] steps: - uses: actions/checkout@v2