Skip to content

Feature/billing cycle fix 142 #21

Feature/billing cycle fix 142

Feature/billing cycle fix 142 #21

Workflow file for this run

name: TypeScript Check
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
typecheck-backend:
name: TypeScript Check (Backend)
runs-on: ubuntu-latest
defaults:
run:
working-directory: backend
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'pnpm'
cache-dependency-path: backend/pnpm-lock.yaml
- run: pnpm install
- run: npx tsc --noEmit
typecheck-client:
name: TypeScript Check (Client)
runs-on: ubuntu-latest
defaults:
run:
working-directory: client
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: client/package-lock.json
- run: npm ci
- run: npx tsc --noEmit