chore(deps): bump the npm_and_yarn group across 2 directories with 1 update #937
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: Pull Request (TypeScript) | |
| on: pull_request | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test-types: | |
| name: TypeScript Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: ⬇️ Set up code | |
| uses: actions/checkout@v6 | |
| with: | |
| show-progress: false | |
| - name: ⎔ Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: lts/* | |
| cache: npm | |
| - name: 📥 Download dependencies | |
| run: npm ci | |
| - name: 🧪 Check Types | |
| run: npm run ts-check |