ci: GitHub Actions workflow — test + audit (FTD-27)

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Hermann_Kitio 2026-04-23 02:35:51 +03:00
parent 5f5737c5a5
commit 8b0c2f795a

20
.github/workflows/ci.yml vendored Normal file
View file

@ -0,0 +1,20 @@
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
quality:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
- run: npm ci
- run: npm run test
- run: npm audit --audit-level=high