chore(deps): bump millionco/react-doctor from 736abc183ac491b4e954fc6bedec3a9a1b73d38b to 01820bb4fd4d0a4aebcd8df2b2a143a098649cb2 #70
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: CI | |
| # Gate proporzionato sulle PR: typecheck + build (CLI e web) + test. | |
| # È il check che rende sicuro l'auto-merge dei bump Dependabot patch/minor. | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ci-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| verify: | |
| name: verify | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7 | |
| with: | |
| persist-credentials: false | |
| - name: Setup Node | |
| uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7 | |
| with: | |
| node-version: 24 | |
| cache: npm | |
| - name: Bootstrap npm 12 | |
| run: npm install --global npm@12.0.2 | |
| - name: Install dipendenze | |
| run: npm ci | |
| - name: Gate completo | |
| run: npm run check |