Skip to content

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

chore: remove redundant build steps from documentation workflows and …

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

Workflow file for this run

name: Test Typescript SDK
on:
push:
branches: [main, next]
pull_request:
branches: [main, next]
jobs:
test:
name: Test 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 Tests
run: pnpm run test