chore(deps): bump qs from 6.14.0 to 6.14.1 #118
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: Code Quality | |
| on: [push, pull_request] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: 'npm' | |
| - run: npm ci | |
| # ✅ Type check | |
| - run: npx tsc --noEmit | |
| # ✅ Linting | |
| - run: npm run lint | |
| # ✅ Prettier formatting check | |
| - run: npm run format -- --check . |