Skip to content

ci: isolate scheduled Sentinel outputs #55

ci: isolate scheduled Sentinel outputs

ci: isolate scheduled Sentinel outputs #55

Workflow file for this run

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