Skip to content

BFP-4068: Introduce GET /accounts/$addr/valueHistory #37

BFP-4068: Introduce GET /accounts/$addr/valueHistory

BFP-4068: Introduce GET /accounts/$addr/valueHistory #37

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