This repository was archived by the owner on Sep 15, 2025. It is now read-only.
fix(deps): update dependency @sentry/node to v10 #2068
This file contains hidden or 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 |