chore(deps): update all non-major dependencies #269
  
    
      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: ci | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - run: corepack enable | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24.11.0 | |
| cache: "pnpm" | |
| - run: pnpm install | |
| - run: pnpm lint | |
| - run: pnpm build | |
| - run: pnpm vitest --coverage | |
| - uses: codecov/codecov-action@v5 |