From 332d79853ba9922c1b50a7620295966422808db5 Mon Sep 17 00:00:00 2001 From: Matthew Robertson Date: Thu, 25 Apr 2024 17:15:40 -0700 Subject: [PATCH] chore: fix github actions There seems to be a bug in the setup-node github action. I am hoping this fixes it. --- .github/workflows/unit.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/unit.yml b/.github/workflows/unit.yml index 70a7e821..507d955a 100644 --- a/.github/workflows/unit.yml +++ b/.github/workflows/unit.yml @@ -32,6 +32,7 @@ jobs: uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1 with: node-version: ${{ matrix.node-version }} + architecture: 'x64' - name: Install dependencies run: npm install - name: Build TypeScript project