From 89fc8a714638d413871f12e6cd224e0a34b6ce4f Mon Sep 17 00:00:00 2001 From: Zac Gaetano Date: Wed, 8 Apr 2026 08:07:54 -0400 Subject: [PATCH] =?UTF-8?q?ci:=20fix=20=E2=80=94=20use=20npm=20install=20i?= =?UTF-8?q?nstead=20of=20npm=20ci=20(no=20lockfile)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a21c659..abf5c30 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,10 +20,9 @@ jobs: uses: actions/setup-node@v4 with: node-version: '20' - cache: 'npm' - name: Install dependencies - run: npm ci + run: npm install - name: Build Windows installer run: npm run build:win @@ -50,10 +49,9 @@ jobs: uses: actions/setup-node@v4 with: node-version: '20' - cache: 'npm' - name: Install dependencies - run: npm ci + run: npm install - name: Build macOS DMG run: npm run build:mac