From a78ef9cc401c8d87bb92e00f7cde5d2d89e1827c Mon Sep 17 00:00:00 2001 From: rUv Date: Wed, 3 Dec 2025 21:39:01 +0000 Subject: [PATCH] fix(ci): Skip optional dependencies in native build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The optional dependencies reference platform packages that don't exist yet (chicken-and-egg problem during initial build). 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .github/workflows/build-native.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-native.yml b/.github/workflows/build-native.yml index 116d81e8..1dfd6a08 100644 --- a/.github/workflows/build-native.yml +++ b/.github/workflows/build-native.yml @@ -82,7 +82,7 @@ jobs: - name: Install dependencies working-directory: npm/packages/core - run: npm install --ignore-scripts + run: npm install --ignore-scripts --omit=optional - name: Build native module working-directory: npm/packages/core