workflow testing for win attempt 4

This commit is contained in:
Siddharth
2025-11-19 23:08:42 -07:00
parent c9d24c42b3
commit 6e68c54ed7
2 changed files with 7 additions and 2 deletions
+7 -1
View File
@@ -20,6 +20,9 @@ jobs:
- name: Install dependencies
run: npm ci
- name: Install app dependencies
run: npx electron-builder install-app-deps
- name: Build Windows app
run: npm run build:win
env:
@@ -41,7 +44,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
node-version: '22'
- name: Setup Python
uses: actions/setup-python@v4
@@ -51,6 +54,9 @@ jobs:
- name: Install dependencies
run: npm ci
- name: Install app dependencies
run: npx electron-builder install-app-deps
- name: Build macOS app
run: npm run build:mac
env:
-1
View File
@@ -8,7 +8,6 @@
"build": "tsc && vite build && electron-builder",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"postinstall": "electron-builder install-app-deps",
"build:mac": "electron-builder --mac",
"build:win": "electron-builder --win --x64"