chore(deps): bump typescript from 5.9.3 to 6.0.3 #1524
Workflow file for this run
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
| name: Build and Typecheck | |
| on: | |
| pull_request: | |
| paths: | |
| - 'packages/**' | |
| - 'apps/docs/**' | |
| - pnpm-lock.yaml | |
| - .github/workflows/typecheck.yml | |
| jobs: | |
| build-and-typecheck: | |
| name: build-and-typecheck | |
| runs-on: ubuntu-latest | |
| env: | |
| TEST_ENV: 'true' | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup Node.js, pnpm and Nx cache | |
| uses: ./.github/actions/setup | |
| - name: Build packages | |
| run: pnpm build:packages | |
| - name: Build docs | |
| run: pnpm exec nx run docs:build |