deps(deps): bump qs from 6.15.1 to 6.15.3 #20
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 | |
| - project/aeo-registry | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: "24" | |
| cache: "npm" | |
| - run: npm ci | |
| - run: npm run verify | |
| # Least-privilege: read-only test/CI runs. GITHUB_TOKEN gets no write to | |
| # anything. The publish/release flows (where they exist) carry their own | |
| # scoped permissions per-workflow. | |
| permissions: | |
| contents: read |