From 9eecafc0486c9321be223415cf3fb76a5bd07dda Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Tue, 14 May 2024 22:15:40 -0700 Subject: [PATCH] [actions] prevent node 14 on ARM mac from failing --- .github/workflows/nodejs.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index a7d3c66..90af4e5 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -39,6 +39,10 @@ jobs: steps: - uses: actions/checkout@v3 + - name: install rosetta + run: softwareupdate --install-rosetta --agree-to-license + if: matrix.os == 'macos-latest' + - uses: ljharb/actions/node/install@main name: 'nvm install ${{ matrix.node-version }} && npm install' with: