File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# INDEX - Synedria Development Documentation
22
3- * Auto-generated: 2026-03-28 00:23 *
3+ * Auto-generated: 2026-03-28 18:33 *
44
55---
66
Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ branches : [main, develop]
6+ pull_request :
7+ branches : [main, develop]
8+
9+ concurrency :
10+ group : ${{ github.workflow }}-${{ github.ref }}
11+ cancel-in-progress : true
12+
13+ jobs :
14+ ci :
15+ name : Lint, Typecheck & Build
16+ runs-on : ubuntu-latest
17+
18+ steps :
19+ - name : Checkout
20+ uses : actions/checkout@v4
21+
22+ - name : Setup Node.js
23+ uses : actions/setup-node@v4
24+ with :
25+ node-version : 22
26+ cache : npm
27+
28+ - name : Install dependencies
29+ run : npm ci
30+
31+ - name : Lint
32+ run : npm run lint
33+
34+ - name : Type check
35+ run : npm run typecheck
36+
37+ - name : Build
38+ run : npm run build
Original file line number Diff line number Diff line change 66 "dev" : " next dev" ,
77 "build" : " next build" ,
88 "start" : " next start" ,
9- "lint" : " eslint"
9+ "lint" : " eslint" ,
10+ "typecheck" : " tsc --noEmit"
1011 },
1112 "dependencies" : {
1213 "next" : " 16.2.1" ,
You can’t perform that action at this time.
0 commit comments