deps: bump qs from 6.13.0 to 6.14.1 #2922
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: REUSE | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| # No permissions are required for this workflow | |
| permissions: {} | |
| jobs: | |
| packages-compliance-check: | |
| name: Packages Compliance | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| matrix: | |
| package: | |
| - "internal/documentation" | |
| - "internal/shrinkwrap-extractor" | |
| - "packages/builder" | |
| - "packages/cli" | |
| - "packages/fs" | |
| - "packages/logger" | |
| - "packages/project" | |
| - "packages/server" | |
| steps: | |
| - uses: actions/checkout@v6 | |
| # Check each package if compliance is correctly set up. | |
| # Each one of these packages would be published separately. | |
| - name: Execute REUSE Compliance Check for ${{ matrix.package }} | |
| uses: fsfe/reuse-action@v6 | |
| with: | |
| args: --root ${{ matrix.package }} lint | |
| # Do the report for the whole repository, adding badge to the | |
| # README file. | |
| final-report: | |
| name: Compliance Check | |
| needs: [packages-compliance-check] | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: REUSE check for full repository | |
| uses: fsfe/reuse-action@v6 |