Skip to content

Commit 5abfa7c

Browse files
committed
CI: add basic CI workflow
1 parent 69c380a commit 5abfa7c

File tree

2 files changed

+39
-1
lines changed

2 files changed

+39
-1
lines changed

.github/workflows/ci.yml

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
build-and-test:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- name: Setup pnpm
17+
uses: pnpm/action-setup@v2
18+
with:
19+
version: 8
20+
21+
- name: Setup Node.js
22+
uses: actions/setup-node@v4
23+
with:
24+
node-version: '18'
25+
cache: 'pnpm'
26+
27+
- name: Install dependencies
28+
run: pnpm install
29+
30+
- name: Type Check
31+
run: pnpm run type-check
32+
33+
- name: Run Tests
34+
run: pnpm run test
35+
36+
- name: Build
37+
run: pnpm run build

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
"scripts": {
2222
"dev": "vite",
2323
"build": "tsc && vite build",
24-
"test": "vitest",
24+
"test": "vitest run",
25+
"type-check": "tsc --noEmit",
2526
"lint": "eslint src --ext .ts,.tsx",
2627
"prepublishOnly": "npm run build"
2728
},

0 commit comments

Comments
 (0)