M0
Some checks failed
CI / validate (push) Has been cancelled

This commit is contained in:
2026-03-22 23:33:24 -05:00
parent 27dac51b5c
commit 177be6332b
47 changed files with 7287 additions and 0 deletions

16
.github/ISSUE_TEMPLATE/bug_report.md vendored Normal file
View File

@@ -0,0 +1,16 @@
---
name: Bug report
about: Report a defect in gameplay, API behavior, or deployment
title: "[Bug] "
labels: bug
assignees: ""
---
## Summary
## Steps to Reproduce
## Expected Result
## Actual Result

View File

@@ -0,0 +1,14 @@
---
name: Feature request
about: Propose a gameplay, UX, or infrastructure enhancement
title: "[Feature] "
labels: enhancement
assignees: ""
---
## Goal
## Proposal
## Success Criteria

37
.github/workflows/ci.yml vendored Normal file
View File

@@ -0,0 +1,37 @@
name: CI
on:
push:
branches:
- main
- "codex/**"
pull_request:
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Test
run: npm run test
- name: Build
run: npm run build
- name: Build Docker image
run: docker compose -f docker/docker-compose.yml build