Fix broken tool.uv.default-groups schema (#5100)
          
            #1175
        
      
  
    
      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 JSON Schemas' | |
| on: [push, pull_request] | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: '18' | |
| cache: 'npm' | |
| cache-dependency-path: './package-lock.json' | |
| - run: 'npm clean-install' | |
| - run: 'npm run typecheck' | |
| - run: 'npm run eslint' | |
| - run: 'node ./cli.js check' |