53b1c7a9c4
- ci.yml: quality-gates condivisi con paths-ignore su content/** - release.yml: docker-release + auto-release con needs - maintenance.yml: schedule martedì 02:00 audit, 1° mese 03:00 outdated refs #1 @25m
27 lines
620 B
YAML
27 lines
620 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.yml@v1
|
|
secrets: inherit
|
|
# with:
|
|
# node-version: '22.17' # opzionale, default già impostato
|