Skip to content

Commit 2e0a1a5

Browse files
committed
Add Vitest suite, GitHub CI workflow for typecheck and tests
Made-with: Cursor
1 parent c17da5c commit 2e0a1a5

8 files changed

Lines changed: 978 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
15+
- uses: actions/setup-node@v4
16+
with:
17+
node-version: "20"
18+
cache: npm
19+
20+
- run: npm ci
21+
22+
- run: npm run typecheck
23+
24+
- run: npm test

0 commit comments

Comments
 (0)