From 7923c61a62d67190054dac9626433a14c00da467 Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Tue, 23 Nov 2021 16:12:38 +0000 Subject: [PATCH] build: pin build-docs workflow to Node.js 14 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The build-docs workflow runs tests which means it is sensitive to globals and can fail if the `node` running the test has a different set of globals to that expected by `test/common`. PR-URL: https://github.com/nodejs/node/pull/40939 Reviewed-By: Antoine du Hamel Reviewed-By: Michaƫl Zasso --- .github/workflows/misc.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/misc.yml b/.github/workflows/misc.yml index a7366f4d04799d..a47b13e299d6ae 100644 --- a/.github/workflows/misc.yml +++ b/.github/workflows/misc.yml @@ -11,7 +11,7 @@ on: - v[0-9]+.x env: - NODE_VERSION: lts/* + NODE_VERSION: 14 jobs: build-docs: