File tree Expand file tree Collapse file tree 5 files changed +2557
-1712
lines changed Expand file tree Collapse file tree 5 files changed +2557
-1712
lines changed Original file line number Diff line number Diff line change @@ -11,18 +11,20 @@ jobs:
11
11
runs-on : ubuntu-latest
12
12
13
13
steps :
14
- - uses : actions/checkout@v4
15
- - name : Install pnpm
16
- uses : pnpm/action-setup@v4
17
- with :
18
- version : 10
19
- - name : Use Node.js ${{ matrix.node-version }}
20
- uses : actions/setup-node@v4
21
- with :
22
- node-version : ${{ matrix.node-version }}
23
- cache : ' pnpm'
24
- - name : Install dependencies
25
- run : pnpm install
26
-
27
- - name : Run tests
28
- run : npm test
14
+ - uses : actions/checkout@v4
15
+ with :
16
+ fetch-depth : 1
17
+
18
+ - uses : actions/setup-node@v4
19
+ with :
20
+ node-version : 20
21
+ cache : " npm"
22
+
23
+ - name : Install dependencies
24
+ run : npm install
25
+
26
+ - name : Type check
27
+ run : npm run typecheck
28
+
29
+ - name : Run tests
30
+ run : npm test
You can’t perform that action at this time.
0 commit comments