mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-01-30 06:12:03 +00:00
electron-builder install-app-deps rebuilds native modules and uses too much memory, causing npm install to be killed (exit code 143). Updated workflows: - e2e-tests.yml - test.yml - pr-check.yml 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
51 lines
1.5 KiB
YAML
51 lines
1.5 KiB
YAML
name: PR Build Check
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- "*"
|
|
push:
|
|
branches:
|
|
- main
|
|
- master
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: "22"
|
|
cache: "npm"
|
|
cache-dependency-path: package-lock.json
|
|
|
|
- name: Check for SSH URLs in lockfile
|
|
run: npm run lint:lockfile
|
|
|
|
- name: Configure Git for HTTPS
|
|
# Convert SSH URLs to HTTPS for git dependencies (e.g., @electron/node-gyp)
|
|
# This is needed because SSH authentication isn't available in CI
|
|
run: git config --global url."https://github.com/".insteadOf "git@github.com:"
|
|
|
|
- name: Install dependencies
|
|
# Use npm install instead of npm ci to correctly resolve platform-specific
|
|
# optional dependencies (e.g., @tailwindcss/oxide, lightningcss binaries)
|
|
# Skip scripts to avoid electron-builder install-app-deps which uses too much memory
|
|
run: npm install --ignore-scripts
|
|
|
|
- name: Install Linux native bindings
|
|
# Workaround for npm optional dependencies bug (npm/cli#4828)
|
|
# Explicitly install Linux bindings needed for build tools
|
|
run: |
|
|
npm install --no-save --force \
|
|
@rollup/rollup-linux-x64-gnu@4.53.3 \
|
|
@tailwindcss/oxide-linux-x64-gnu@4.1.17
|
|
|
|
- name: Run build:electron (dir only - faster CI)
|
|
run: npm run build:electron:dir
|