diff --git a/.github/workflows/check.yaml b/.github/workflows/check.yaml index 97c89b1..6a9971a 100644 --- a/.github/workflows/check.yaml +++ b/.github/workflows/check.yaml @@ -37,6 +37,30 @@ jobs: - name: Run | Lint run: pnpm run lint + typecheck: + runs-on: ubuntu-latest + timeout-minutes: 5 + steps: + - name: Setup | Checkout + uses: actions/checkout@v4 + + - name: Setup | Install pnpm + uses: pnpm/action-setup@v4 + with: + run_install: false + + - name: Setup | Node.js + uses: actions/setup-node@v4 + with: + node-version-file: .nvmrc + cache: pnpm + + - name: Setup | Install Dependencies + run: pnpm install --frozen-lockfile + + - name: Run | Type Check + run: pnpm run typecheck + check-schema: runs-on: ubuntu-latest timeout-minutes: 5