chore(deps): update dependency @nestjs/cli to v10.4.7 #1789
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
workflow_call: | |
pull_request: | |
branches: | |
- main | |
name: Type Check | |
jobs: | |
typecheck: | |
name: Check Types | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 9 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: .nvmrc | |
cache: "pnpm" | |
- name: Install Dependancies | |
run: pnpm install --frozen-lockfile | |
- name: Add Problem Matcher | |
run: echo "::add-matcher::.github/problem-matchers/tsc.json" | |
- name: Check Types | |
run: pnpm tsc --noEmit |