chore(deps): update pnpm to v10.5.2 (#985) #3410
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
name: Type Check | |
on: push | |
jobs: | |
tsc: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
- name: Install PNPM | |
run: corepack enable && corepack prepare pnpm@latest --activate | |
- name: Install workspaces | |
run: pnpm install | |
- name: Run tsc | |
run: pnpm type-check |