You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 11, 2026. It is now read-only.
This repository was archived by the owner on Jul 11, 2026. It is now read-only.
feat: add GitHub Actions CI pipeline — no automated testing, lint, or Discord bot connectivity check runs on any PR despite 50 active forks and a 3-service monorepo (client/server/bot) #261
Gamify is a 3-service monorepo (React client, Express server, Discord.js
bot). With 50 active forks and 56 open issues, every PR is merged with
zero automated verification. There is no .github/workflows/ CI file.
What This Allows to Merge Undetected
JavaScript syntax errors in bot/index.js that crash the Discord bot
Express route regressions in server/routes/ that break point awarding
React build failures in client/src/ from JSX import errors
Missing server/.env.example entries when new features add new env vars
Summary
Gamify is a 3-service monorepo (React client, Express server, Discord.js
bot). With 50 active forks and 56 open issues, every PR is merged with
zero automated verification. There is no
.github/workflows/CI file.What This Allows to Merge Undetected
bot/index.jsthat crash the Discord botserver/routes/that break point awardingclient/src/from JSX import errorsserver/.env.exampleentries when new features add new env varsProposed Workflow
Create
.github/workflows/ci.yml:Acceptance Criteria
.github/workflows/ci.ymlcreated and green onmainGET /healthendpoint added to Express server for CI verificationLabels:
enhancement,ci/cd,infrastructure,level: intermediate