chore(deps-dev): bump nextcloud/openapi-extractor from 1.9.0 to 1.9.1 in /vendor-bin/openapi-extractor #453
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: Lint Check | |
| on: | |
| pull_request: | |
| branches: | |
| - development | |
| - main | |
| - beta | |
| jobs: | |
| lint-check: | |
| runs-on: ubuntu-latest | |
| # Observed fleet-wide: median 0.6 min, max 1.4 min (n=176). Deliberately loose. | |
| timeout-minutes: 15 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| # There was NO setup-node step here at all, so this job ran on whatever | |
| # node the runner image happened to ship — node 20, and therefore npm 10. | |
| # package.json declares `npm: ^11`, and npm 10 cannot read an npm-11 | |
| # lockfile: it reports `Missing: picomatch@4.0.5 from lock file` for a | |
| # package that IS in the lock, which reads like a corrupt lockfile and is | |
| # actually a tool-version mismatch. Pinned to the version the manifest | |
| # asks for so the two cannot disagree. | |
| - name: Set up Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '24' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Linting | |
| run: npm run lint |