Skip to content

fix: use npm install instead of npm ci (no lockfile) #4

fix: use npm install instead of npm ci (no lockfile)

fix: use npm install instead of npm ci (no lockfile) #4

Workflow file for this run

# CI workflow for the public api-sdk-typescript repo.
# Managed by the SDK Sync workflow in the API monorepo — do not edit directly.
name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
workflow_dispatch:
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install dependencies
run: npm install
- name: Type check
run: npx tsc --noEmit
- name: Build
run: npm run build