chore: bump got from 14.4.9 to 14.6.0 (#746) #958
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: Check | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| jobs: | |
| check-package: | |
| name: Check Package | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/[email protected] | |
| - name: Setup pnpm | |
| uses: threeal/[email protected] | |
| - name: Install Dependencies | |
| run: pnpm install | |
| - name: Check Types | |
| run: pnpm tsc --noEmit | |
| - name: Check Formatting | |
| run: pnpm prettier --check . | |
| - name: Check Lint | |
| run: pnpm eslint |