Build/add workflow#6
Merged
ChingEnLin merged 5 commits intodevfrom Aug 29, 2025
Merged
Conversation
Co-authored-by: ChingEnLin <50169422+ChingEnLin@users.noreply.github.com>
…9161-f3ce42c94510 Add comprehensive CI pipeline for frontend and backend testing
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR introduces a comprehensive CI/CD pipeline using GitHub Actions to replace Docker-based workflows with test-focused automation. The changes implement parallel testing for both backend (Python) and frontend (Node.js) components with coverage reporting and build verification.
- Adds a complete CI workflow with backend/frontend testing, linting, and coverage reporting
- Introduces comprehensive documentation for the new CI/CD pipeline structure and local development
- Removes legacy Docker build workflow that pushed to Azure Container Registry
Reviewed Changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
.github/workflows/docker-build-push.yml |
Removes legacy Docker build and push workflow for ACR |
.github/workflows/ci.yml |
Adds comprehensive CI pipeline with parallel backend/frontend testing and build verification |
.github/README.md |
Documents the new CI/CD pipeline structure, jobs, and local testing instructions |
Comments suppressed due to low confidence (1)
.github/workflows/ci.yml:1
- [nitpick] The coverage percentages in the documentation may become outdated as the codebase evolves. Consider removing specific percentages or adding a note that these are approximate/historical values.
name: CI - Test Frontend and Backend
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
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.
This pull request introduces a comprehensive CI/CD pipeline for the QueryPal project using GitHub Actions. It adds a detailed workflow for running backend and frontend tests, performing build verification, and uploading coverage reports. Additionally, it documents the new pipeline and removes the previous Docker build and push workflow.
CI/CD Pipeline Implementation and Documentation:
.github/workflows/ci.ymlworkflow that runs backend (Python) and frontend (Node.js) tests in parallel, checks code quality, uploads coverage reports to Codecov, and verifies frontend build artifacts. This workflow is triggered on pushes and pull requests to key branches..github/README.mdfile documenting the structure, jobs, and usage of the new CI/CD pipeline, including local testing instructions and coverage details.Cleanup of Legacy Workflows:
.github/workflows/docker-build-push.ymlworkflow, which previously handled Docker image builds and pushes to Azure Container Registry.