f0896d775d
- crea gemelli X-github.yml per ogni reusable con action da github.com (fallback mirror gitea.com) - python-dependency-check/outdated: audit in venv isolata (fix falsi positivi da runner ML) - python-dependency-check/outdated: deduplica issue (commento invece di nuova issue) - examples: aggiungi ci-github.yml e release-github.yml in tutte le cartelle Fixes #3 @3h
27 lines
644 B
YAML
27 lines
644 B
YAML
# Copia in: .gitea/workflows/ci.yml
|
|
# Usato da: siti documentazione Nuxt 4 con SSR e Docker
|
|
#
|
|
# Prerequisiti:
|
|
# - package.json con script: lint:check, typecheck, format:check, build, test
|
|
# - Secrets: NPM_TOKEN (accesso registry @pzeta privato)
|
|
|
|
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths-ignore:
|
|
- '**.md'
|
|
- 'content/**'
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
quality-gates:
|
|
uses: https://gitea.pzetatouch.it/devops/shared-actions/.gitea/workflows/quality-gates-github.yml@v1
|
|
secrets: inherit
|
|
with:
|
|
npm-version: '11' # lockfile generato con npm@11, runner usa npm@10 di default
|