File tree 2 files changed +39
-1
lines changed
2 files changed +39
-1
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 21
21
"scripts" : {
22
22
"dev" : " vite" ,
23
23
"build" : " tsc && vite build" ,
24
- "test" : " vitest" ,
24
+ "test" : " vitest run" ,
25
+ "type-check" : " tsc --noEmit" ,
25
26
"lint" : " eslint src --ext .ts,.tsx" ,
26
27
"prepublishOnly" : " npm run build"
27
28
},
You can’t perform that action at this time.
0 commit comments