chore: bump Node to version 24.0.1 (#783) #1315
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 | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| jobs: | |
| build-library: | |
| name: Build Library | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout Project | |
| uses: actions/checkout@v4.2.2 | |
| - name: Setup pnpm | |
| uses: threeal/setup-pnpm-action@v1.0.0 | |
| - name: Install Dependencies | |
| run: pnpm install | |
| - name: Check Formatting | |
| run: pnpm prettier --check . | |
| - name: Check Lint | |
| run: pnpm eslint | |
| - name: Check Types | |
| run: pnpm tsc --noEmit | |
| - name: Test Library | |
| run: pnpm test | |
| - name: Package Library | |
| run: pnpm pack |