From e02fd889c293c3557d9cbb0a6987facf72ad0d01 Mon Sep 17 00:00:00 2001 From: DhanushSantosh Date: Fri, 16 Jan 2026 19:51:23 +0530 Subject: [PATCH] fix: add --force flag to npm install in format-check workflow Ensures dmg-license can be installed on Linux CI runners even though it's a darwin-only package. The --force flag allows npm to skip platform mismatches. Co-Authored-By: Claude Haiku 4.5 --- .github/workflows/format-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/format-check.yml b/.github/workflows/format-check.yml index 39d5a257..d6904979 100644 --- a/.github/workflows/format-check.yml +++ b/.github/workflows/format-check.yml @@ -25,7 +25,7 @@ jobs: cache-dependency-path: package-lock.json - name: Install dependencies - run: npm install --ignore-scripts + run: npm install --ignore-scripts --force - name: Check formatting run: npm run format:check