Skip to content

Merge pull request #223 from objectstack-ai/copilot/upgrade-objectsta… #665

Merge pull request #223 from objectstack-ai/copilot/upgrade-objectsta…

Merge pull request #223 from objectstack-ai/copilot/upgrade-objectsta… #665

Workflow file for this run

name: Type Check
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
typecheck:
name: TypeScript Type Check
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 10
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
timeout-minutes: 2
- name: Run TypeScript type check
run: |
echo "Running TypeScript compiler in build mode for type checking..."
pnpm tsc -b
timeout-minutes: 2