feat: add TypeScript SDK linting, testing, and CI workflows#657
Open
Conversation
Contributor
Author
|
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
This stack of pull requests is managed by Graphite. Learn more about stacking. |
This was referenced Aug 6, 2025
🚀 Preview DeploymentYour changes have been deployed to a preview environment: Preview URL: https://lilypad-pr-657.mirascope.workers.dev Database Branch: Last updated: 2025-08-06T14:04:55Z (Commit: 5e48a03) |
f8ce5e1 to
97d0810
Compare
5f83ebd to
5bd4e72
Compare
This was referenced Aug 6, 2025
b92eefb to
eb6d12b
Compare
eb6d12b to
3960052
Compare
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.

TL;DR
Add linting, formatting, and testing infrastructure to the TypeScript SDK along with GitHub Actions workflows for CI.
What changed?
typescript-sdk-lint.ymlfor linting and formatting checkstypescript-sdk-test.ymlfor running tests across Node.js versions 20, 22, and 24How to test?
cd sdks/typescriptWhy make this change?
This change establishes a robust development environment for the TypeScript SDK with proper code quality tools and automated testing. The GitHub Actions workflows ensure that code quality is maintained on every pull request and push to main branches. This infrastructure will help maintain code quality, catch bugs early, and ensure the SDK remains reliable as it evolves.