ci(github): workflow typecheck/test/audit + README projet

This commit is contained in:
Hermann_Kitio 2026-04-17 18:04:22 +03:00
parent 57a8b1847a
commit ede03d01c1
2 changed files with 74 additions and 61 deletions

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

@ -0,0 +1,23 @@
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 lint
- run: npm run format:check
- run: npm run typecheck
- run: npm run test
- run: npm audit --audit-level=high