trying stuff

This commit is contained in:
Cody Seibert
2025-12-11 22:43:57 -05:00
parent 95913714cc
commit 8b62bf9817
4 changed files with 16 additions and 4 deletions

View File

@@ -25,7 +25,9 @@ jobs:
cache-dependency-path: package-lock.json
- name: Install dependencies
run: npm ci
# Use npm install instead of npm ci to correctly resolve platform-specific
# optional dependencies (e.g., @tailwindcss/oxide, lightningcss binaries)
run: npm install
- name: Run build:electron
run: npm run build:electron

View File

@@ -41,7 +41,9 @@ jobs:
cache-dependency-path: package-lock.json
- name: Install dependencies
run: npm ci
# Use npm install instead of npm ci to correctly resolve platform-specific
# optional dependencies (e.g., @tailwindcss/oxide, lightningcss binaries)
run: npm install
- name: Build Electron App (macOS)
if: matrix.os == 'macos-latest'