Add analyzer and frontend lint guardrails

This commit is contained in:
2026-02-07 02:12:00 +01:00
parent 34d274d244
commit 5b06e279f3
19 changed files with 1313 additions and 53 deletions

View File

@@ -14,6 +14,20 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
- name: Install frontend tooling
run: npm install
- name: Lint frontend
run: npm run lint
- name: Check frontend formatting
run: npm run format:check
- name: Setup .NET
uses: actions/setup-dotnet@v4
with: