ci: enforce lint coverage and Node LTS quality gates

This commit is contained in:
NuklearRabbit
2026-07-29 16:27:16 +02:00
parent a7ab2d6cc8
commit 8e580a0b13
7 changed files with 1494 additions and 8 deletions
+19
View File
@@ -0,0 +1,19 @@
name: ForgeFlow quality gate
on:
push:
branches: [main]
pull_request:
jobs:
quality:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- run: npm ci
- run: npm run quality
- run: npm audit --omit=dev --audit-level=high