build(deps): bump diff from 4.0.2 to 4.0.4 in /packages/progress-bar #48
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: Type Check | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| type-check: | |
| name: TypeScript Type Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22.x' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Type check all packages | |
| run: | | |
| set -e | |
| for dir in packages/*/; do | |
| if [ -f "$dir/tsconfig.build.json" ]; then | |
| echo "Type checking $dir" | |
| cd "$dir" | |
| npx tsc --noEmit -p tsconfig.build.json || exit 1 | |
| cd ../.. | |
| fi | |
| done | |
| - name: Check root TypeScript config | |
| run: npx tsc --noEmit |