Добавить единый CI-прогон и workflow

scripts/ci.sh собирает все решения, гоняет тесты всех сервисов, сканирует уязвимые NuGet-зависимости и собирает фронт; build.sh/test.sh расширены на все решения. Плюс .github/workflows/ci.yml. Закрывает BL-CI.
This commit is contained in:
Rustam Khalimov
2026-09-11 17:46:03 +03:00
parent 1d7c9980ba
commit be457d7286
7 changed files with 110 additions and 20 deletions
+28
View File
@@ -0,0 +1,28 @@
name: ci
on:
push:
pull_request:
workflow_dispatch:
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: .NET 10
uses: actions/setup-dotnet@v4
with:
dotnet-version: '10.0.x'
- name: Node 20
uses: actions/setup-node@v4
with:
node-version: '20'
cache: npm
cache-dependency-path: src/frontend/package-lock.json
- name: CI (сборка, тесты, скан уязвимостей, фронт)
run: sh scripts/ci.sh