Skip to content

chore: remove redundant build steps from documentation workflows and … #165

chore: remove redundant build steps from documentation workflows and …

chore: remove redundant build steps from documentation workflows and … #165

Workflow file for this run

name: Build Typescript SDK
on:
push:
branches: [main]
pull_request:
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@v2
with:
version: 10.8.0 # Match the version in package.json
- 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