Skip to content

Commit 0e92ca5

Browse files
authored
feat: Major TypeScript rewrite with enhanced configuration and OAuth UI
2 parents 1b57022 + 9f0121b commit 0e92ca5

35 files changed

+6173
-613
lines changed

.github/workflows/ci.yml

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
jobs:
10+
test:
11+
name: Test on Node.js ${{ matrix.node-version }}
12+
runs-on: ubuntu-latest
13+
14+
strategy:
15+
matrix:
16+
node-version: [20.x, 22.x]
17+
18+
steps:
19+
- name: Checkout code
20+
uses: actions/checkout@v4
21+
22+
- name: Setup Node.js ${{ matrix.node-version }}
23+
uses: actions/setup-node@v4
24+
with:
25+
node-version: ${{ matrix.node-version }}
26+
cache: 'npm'
27+
28+
- name: Install dependencies
29+
run: npm ci
30+
31+
- name: Run type check
32+
run: npm run typecheck
33+
34+
- name: Run tests
35+
run: npm test
36+
37+
- name: Build
38+
run: npm run build
39+
40+
lint:
41+
name: Lint and Format Check
42+
runs-on: ubuntu-latest
43+
44+
steps:
45+
- name: Checkout code
46+
uses: actions/checkout@v4
47+
48+
- name: Setup Node.js
49+
uses: actions/setup-node@v4
50+
with:
51+
node-version: 20.x
52+
cache: 'npm'
53+
54+
- name: Install dependencies
55+
run: npm ci
56+
57+
- name: Run type check
58+
run: npm run typecheck

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
node_modules/
22
bun.lockb
33
pnpm-lock.yaml
4-
package-lock.json
54
dist/
65
.DS_Store
7-
6+
.history/

0 commit comments

Comments
 (0)