fix(deps): update qs to 6.14.1 to fix security issue #119
Workflow file for this run
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: Branch & Test Coverage Check | |
| on: | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24 | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Run tests and generate coverage | |
| run: npm run gen:coverage | |
| - name: Check line and branch coverage thresholds | |
| env: | |
| COVERAGE_THRESHOLD_LINE: 95 | |
| COVERAGE_THRESHOLD_BRANCH: 95 | |
| run: node .github/scripts/check-coverage.js |