🔍 Problem Statement
📖 Description
Due to severe problems with the current GitHub Actions setup (e.g., unreliable builds, failing checks, or misconfigured workflows), we need to remove all GitHub Actions workflows from the repository. This will prevent contributors and maintainers from being blocked by broken CI/CD pipelines until a stable replacement is introduced.
Expected Behavior
- All existing GitHub Actions workflow files (e.g.,
.github/workflows/*.yml) should be removed.
- Repository should no longer trigger GitHub Actions on PRs, commits, or merges.
- Contributors and maintainers should not see failing GitHub Actions checks on new pull requests.
🛠 Technical Notes
- Identify and delete all workflow files under
.github/workflows/.
- Confirm that no references to GitHub Actions remain in repository settings.
- Document removal in the changelog or README for transparency.
- Consider planning for a future CI/CD solution (e.g., alternative pipelines or manual build instructions).
✅ Acceptance Criteria
- No GitHub Actions workflows exist in the repository.
- PRs and commits no longer trigger GitHub Actions checks.
npm run lint and npm run build still succeed locally.
- Contributors and maintainers are not blocked by failing CI/CD checks.
📈 Expected Impact
High — Would significantly improve user experience