docs: add JSDoc comments to TS SDK class properties #866
Workflow file for this run
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
| name: Build Typescript SDK | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - "ts/**" | |
| pull_request: | |
| paths: | |
| - "ts/**" | |
| jobs: | |
| build: | |
| name: Build Typescript SDK | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v3 | |
| - name: Setup PNPM | |
| uses: pnpm/action-setup@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: "20" | |
| cache: "pnpm" | |
| - name: Install Dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Run Linting | |
| run: pnpm lint | |
| - name: Run Build | |
| run: pnpm run build:packages |