From c3261493e5a476ef25f97de668fbfaa8b703a45c Mon Sep 17 00:00:00 2001 From: trevor-signal <131492920+trevor-signal@users.noreply.github.com> Date: Wed, 6 Dec 2023 12:37:47 -0500 Subject: [PATCH] Fix macOS CI build --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 36acc91335..bea4bf3f69 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,6 +73,11 @@ jobs: - uses: actions/setup-node@v3 with: node-version: '18.17.1' + + # The version of node-gyp bundled with our node/npm version does not support python 3.12, which the runner uses + # When we update node again, we can probably remove this + - run: npm install -g npm@latest + - run: npm install -g yarn@1.22.10 - name: Cache Desktop node_modules