From f7aeefe404b47285a086fb529164e00f88774764 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Linus=20Unneb=C3=A4ck?= Date: Wed, 29 Nov 2023 10:48:02 +0100 Subject: [PATCH] Temporarily disable tests on Windows + Node.js 20 --- .github/workflows/ci.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index de845bbe7..f0606175d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -33,7 +33,11 @@ jobs: runs-on: windows-2019 strategy: matrix: - node: [18.12.0, 20.9.0] + # FIXME: Node.js 20.9.0 is currently broken on Windows, in the `registerFont` test: + # ENOENT: no such file or directory, lstat 'D:\a\node-canvas\node-canvas\examples\pfennigFont\pfennigMultiByte🚀.ttf' + # ref: https://github.com/nodejs/node/issues/48673 + # ref: https://github.com/nodejs/node/pull/50650 + node: [18.12.0] steps: - uses: actions/setup-node@v3 with: