ci: add GitHub Actions CI workflow#111
Open
indresh404 wants to merge 3 commits into
Open
Conversation
Contributor
|
@indresh404 is attempting to deploy a commit to the debmallya-03's projects Team on Vercel. A member of the Team first needs to authorize it. |
✅ Deploy Preview for webifynet ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Author
|
@Debmallya-03 Review if any issue you can tell me |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
closes : #96
🚀 Pull Request: Add CI Pipeline + Fix TypeScript & Build Breaks
📌 Summary
This PR introduces a GitHub Actions Continuous Integration (CI) workflow and fixes multiple critical TypeScript and build-level issues that were blocking successful builds.
The CI pipeline ensures that every push and pull request to
main/masteris automatically validated for:🔧 Changes Made
1. CI Pipeline Setup
Added
.github/workflows/ci.ymlto enable automated checks on:main/masterCI stages include:
npm cinpm run lint)npx tsc --noEmit)npm run build)2. Critical TypeScript Fixes
try/catchinitialization flow causing compilation failureCodeEditorblocktoastimporthtml/css/javascript) in template configuration causingTS1117errors✅ Validation
✔
npx tsc --noEmit→ 0 TypeScript errors✔
npm run lint→ passes successfully⚠
npm run build→ Fails due to external font fetch issue:next/fontunable to load Geist / Geist Mono from Google Fonts (EACCES :443)🧪 Impact
main📎 Notes
The remaining build issue is related to external font fetching in
next/font, not this PR. It may require:🏷️ Labels
gssoc:approvedlevel:criticalquality:exceptional