Skip to content

build(deps-dev): bump the nx-group group across 1 directory with 5 up… #46

build(deps-dev): bump the nx-group group across 1 directory with 5 up…

build(deps-dev): bump the nx-group group across 1 directory with 5 up… #46

Workflow file for this run

name: Type Checking
on: push
jobs:
lint:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./apps/client
strategy:
matrix:
node-version: [22]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run Type Check
run: pnpm run typecheck