space-game/.github/workflows/build.yml
Michael Mainguy eb620ee6d4
Some checks failed
Build / build (push) Failing after 1m4s
Remove setup-node action for self-hosted runner.
🤖 Generated with [Claude Code](https://claude.com/claude-code)

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

22 lines
298 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