fix: update package-lock.json, enhance CI pipeline, and add check-typ…#36
Merged
FabianSanchezD merged 1 commit intoNeko-Protocol:mainfrom Feb 28, 2026
Merged
Conversation
…es script to all apps
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.
🚀 Neko Pull Request
Mark with an
xall the checkboxes that apply (like[x])📌 Type of Change
📝 Changes description
Fix broken builds
HttpModule,EventEmitterModule, andDataReceptionServiceinapps/aggregator/src/app.module.ts.SchedulerServiceinapps/ingestor/src/modules/prices.module.ts.Injectimport inapps/aggregator/src/services/aggregation.service.ts(lint error).Extend type checking to all workspaces
"check-types": "tsc --noEmit"script to 6 workspaces:aggregator,api,transactor,ingestor,frontend,signer.turbo.json:check-typestask now depends on^buildinstead of^check-types, so dependency type declarations (.d.ts) are available before consumer packages type-check.apps/frontend/jest.setup.d.tsto expose@testing-library/jest-dommatcher types for TypeScript.Add Test step to CI
npm test) to.github/workflows/ci.ymlafter the Build step.packages/signer/package.jsontest script with--passWithNoTests(no test files yet).Clean up duplicate dependencies
axiosentry inapps/aggregator/package.json.@oracle-stocks/sharedentry inapps/ingestor/package.json.Documentation
README.mdwith instructions to run the full pipeline locally.Lockfile
package-lock.jsonto reflect dependency fixes.📸 Evidence (A Loom/Cap video is required as evidence, we WON'T merge if there's no proof)
Full pipeline verified locally:


Video Evidence:
https://www.loom.com/share/fd5a00ef5db64d19968e58af23c1edc3
⏰ Time spent breakdown
🌌 Comments
turbo.jsonchange from"dependsOn": ["^check-types"]to"dependsOn": ["^build"]for thecheck-typestask is important: without it,tsc --noEmitin consumer packages (like ingestor) fails because@oracle-stocks/sharedhasn't produced its.d.tsfiles yet.--passWithNoTestsprevents CI from failing until tests are added.Thank you for contributing to Neko, you just helped us make RWAs consumer friendly on Stellar! We hope you can continue contributing to this project.