blob: 78b024af5eb0c990b5d4db8e0d33d3d9597f32bc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Benchmarks
## `make check` execution time
| Run | Time (real) | Status |
| --- | ----------- | ------------- |
| 1 | 15.2s | Cold (fresh) |
| 2 | 8.2s | Warm (cached) |
| 3 | 8.3s | Warm (cached) |
**Environment:** Linux (Development VM)
**Date:** 2026-02-15
### Summary
The `make check` workflow consists of:
1. `golangci-lint run` (Backend)
2. `npm run lint` (Frontend)
3. `go test -cover ./...` (Backend)
4. `npm test -- --run` (Frontend)
The goal of keeping the check under 15 seconds for a fast local feedback loop has been achieved.
|