fix(deps): update all non-major dependencies #440
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: Validate code | |
| on: [push, workflow_dispatch] | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "24.16.0" | |
| cache: "pnpm" | |
| - name: Install dependencies | |
| run: pnpm i --frozen-lockfile | |
| - name: Run linter | |
| run: pnpm run lint | |
| - name: Run knip | |
| run: pnpm run knip:ci | |
| - name: Build project | |
| run: pnpm run build |