feat: Add CI/CD workflows for PR builds, main branch, and TestFlight deployment#6
Merged
GitchalWoo merged 10 commits intomainfrom Nov 3, 2025
Merged
Conversation
…nd TestFlight deployment - Add PR build workflow (lint + tests on Ubuntu) - Add main branch CI with automatic iOS build verification - Add iOS build workflow (verification without deployment) - Add iOS TestFlight deployment workflow (complete deployment pipeline) - Add reusable build-test workflow for DRY - Create TestFlight GitHub environment - Add comprehensive documentation in CLAUDE.md and README.md - Add TestFlight setup checklist Workflows: - PR builds: Fast validation on Ubuntu (~2-5 min) - Main CI: Validation + iOS build on every push (~25-35 min) - iOS Build: Automatic on main + manual trigger for verification - iOS TestFlight: Manual deployment with version bumping and signing
- Migrate from .eslintrc.js to eslint.config.js (ESLint v9 requirement) - Remove deprecated .eslintignore file (now using ignores in flat config) - Maintain all existing linting rules and ignore patterns - Add Colors constants to avoid color literals in components - Fix color literal warning in App.tsx by using Colors.background - ESLint now passes with zero warnings
- Add detailed test coverage summary with percentages table - Show test results breakdown (statements, branches, functions, lines) - Add verbose test output for better visibility - Improve PR summary to clearly indicate iOS build will run on main - Add step-by-step next steps in PR summary - Clarify TestFlight deployment is manual trigger only
- Add 'json-summary' to coverageReporters in jest.config.js - Add collectCoverageFrom to include src files and exclude tests - This fixes the "No coverage reports generated" message in CI - Coverage summary table will now display actual test coverage percentages
- Remove pr-summary job from pr-build.yml (was showing as extra check) - Enhance reusable-build-test summary to include iOS build info - Now shows single 'Validate PR' check instead of two - Summary still displays coverage, test results, and iOS info
…uild for generic device
Tania-Roche-SWO
approved these changes
Nov 3, 2025
GitchalWoo
approved these changes
Nov 3, 2025
Collaborator
GitchalWoo
left a comment
There was a problem hiding this comment.
Looks good, wondering about naming the pipelines, but for now it is ok
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.
Summary
This PR adds a complete CI/CD workflow system including:
Workflows
PR Build Workflow
mainMain Branch CI Workflow
mainiOS Build Workflow
iOS TestFlight Workflow
Cost Optimization
Next Steps After Merge
.github/TESTFLIGHT_SETUP.md)Testing
This PR will test the PR build workflow automatically when created! Check the Actions tab.