feat: migrate CI to pnpm and add Breadcrumb component#171
Merged
dinahmaccodes merged 1 commit intoApr 3, 2026
Conversation
Collaborator
|
Checking CI |
Collaborator
|
LGTM!!! Solid work here actually |
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.
[FE] Add Breadcrumb Component and Migrate CI to pnpm (Closes #151 , Closes #156)
Overview
This PR introduces a reusable, accessible Breadcrumb navigation component for the frontend and updates our GitHub Actions CI workflow to standardize on
pnpm. These changes improve both the user experience through better navigation and the developer experience through faster, more reliable CI builds.Feature Summary
.github/workflows/ci.ymlfromnpmtopnpmto leverage faster dependency installation and efficient caching.aria-label="Breadcrumb"andaria-current="page"for screen reader compatibility.Technical Implementation
frontend/src/components/common/Breadcrumb/, utilizing a clean separation between logic (Breadcrumb.tsx) and definitions (types.ts).pnpm/action-setup@v2into the workflow.actions/setup-nodeaction to usecache: 'pnpm'.pnpm install --frozen-lockfileto ensure deterministic builds in the cloud environment.frontend/src/components/index.tsto include the Breadcrumb, maintaining our flat-import structure.Test Coverage
/or>) display correctly between segments.pnpm run buildandpnpm run lintin the updated CI environment.Checklists
.github/workflows/ci.ymlto usepnpm/action-setup@v2pnpm-lock.yamlnpmcommands withpnpmin the CI pipelinepnpm run lint,test, andbuildpass locally and in CI