space-game/.github/workflows/build.yml
Michael Mainguy 3d063b1174
Some checks are pending
Build / build (push) Waiting to run
Add GitHub Actions workflow for automated builds.
🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-16 08:23:01 -05:00

28 lines
421 B
YAML

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
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: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run build
run: npm run build