Skip to content

[BFP-4065] pro sdk add client to jwt token #48

[BFP-4065] pro sdk add client to jwt token

[BFP-4065] pro sdk add client to jwt token #48

Workflow file for this run

name: Typecheck (ts/sdk)
permissions:
contents: read
on:
pull_request:
paths:
- "ts/sdk/**"
- ".github/workflows/typecheck.yaml"
jobs:
typecheck:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ts/sdk
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "24"
cache: "yarn"
cache-dependency-path: ts/sdk/yarn.lock
- name: Enable Corepack
run: corepack enable
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Typecheck
run: yarn build:types