From bd360e40b396e0db6753ea692be222af6abbf09c Mon Sep 17 00:00:00 2001 From: Jitse Niesen Date: Sat, 17 Jan 2026 17:36:09 +0000 Subject: [PATCH] Force installation of recent nodejs in workflow For some reason, the GitHub workflow installs an old version of node.js on Linux, causing the installation of the JavaScript dependencies to fail. Thus, specify that we want a recent version. --- .github/workflows/run-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index fe004aae..f22ffe28 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -65,7 +65,7 @@ jobs: run: pip install --no-deps -e spyder - name: Install node.js shell: bash -l {0} - run: conda install nodejs -y + run: conda install "nodejs >20" -y - name: Install plugin dependencies (without Spyder) if: matrix.SPYDER_SOURCE == 'git' shell: bash -l {0}