Skip to content

feat(explorer): enable rail settlements in console #123

feat(explorer): enable rail settlements in console

feat(explorer): enable rail settlements in console #123

Workflow file for this run

name: Type Check
on:
pull_request:
branches: [main, develop]
paths:
- "apps/**"
- "packages/**"
- "package.json"
- "pnpm-lock.yaml"
- "turbo.json"
- "tsconfig*.json"
- ".github/workflows/typecheck.yml"
push:
branches: [main, develop]
paths:
- "apps/**"
- "packages/**"
- "package.json"
- "pnpm-lock.yaml"
- "turbo.json"
- "tsconfig*.json"
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
typecheck:
name: Type Check
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9.15.2
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Type check
run: pnpm type-check