Skip to content

Commit d45e681

Browse files
Merge pull request #1 from ghostintheshell-192/develop
Develop
2 parents 51172e5 + 4317a03 commit d45e681

3 files changed

Lines changed: 41 additions & 2 deletions

File tree

.development/INDEX.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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

.github/workflows/ci.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
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

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
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",

0 commit comments

Comments
 (0)