space-game/.github/workflows/build.yml
Michael Mainguy eea860e19c
All checks were successful
Build / build (push) Successful in 2m38s
Increase Node.js heap size to 2GB for build process.
🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-16 09:06:34 -05:00

24 lines
359 B
YAML

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: linux_amd64
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependencies
run: npm ci
- name: Run build
run: npm run build
env:
NODE_OPTIONS: "--max-old-space-size=2048"