chore: bump version #50
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: Typecheck | |
| on: | |
| workflow_dispatch: | |
| push: | |
| pull_request: | |
| concurrency: | |
| group: 'typecheck' | |
| cancel-in-progress: true | |
| jobs: | |
| typecheck: | |
| name: Typecheck | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| fetch-depth: 0 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24 | |
| - name: Install nodeThread dependencies | |
| run: cd nodejs-assets/nodejs-project && npm install --force --include=dev && cd .. && cd .. | |
| - name: Install main dependencies | |
| run: npm install --force --include=dev | |
| - name: Build nodeThread | |
| run: npm run buildNodeThread | |
| - name: Typecheck | |
| run: npm run typecheck |