chore(deps): update dependency @types/node to v25.2.3 (#720) #91
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 Linter Test | |
| on: | |
| push: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| id-token: write | |
| jobs: | |
| build-and-linter: | |
| name: Build and Linter test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| cache: pnpm | |
| - name: Install Deps | |
| run: pnpm install --frozen-lockfile | |
| - name: Build project | |
| env: | |
| BUNDLE_ANALYSIS: true | |
| run: pnpm run build | |
| - name: Linter test | |
| run: | | |
| pnpm run lint:check |