space-game/.github/workflows/build.yml
Michael Mainguy 2901106819
Some checks failed
Build / build (push) Failing after 34s
Fix workflow runner label to match declared runner labels.
🤖 Generated with [Claude Code](https://claude.com/claude-code)

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

28 lines
419 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: 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