File tree Expand file tree Collapse file tree 1 file changed +20
-2
lines changed Expand file tree Collapse file tree 1 file changed +20
-2
lines changed Original file line number Diff line number Diff line change 38
38
with :
39
39
fetch-depth : 0
40
40
41
+ - name : Cache pnpm store
42
+ id : cache
43
+ uses : actions/cache@v3
44
+ with :
45
+ path : ~/.pnpm-store
46
+ key : ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
47
+ restore-keys : |
48
+ ${{ runner.os }}-pnpm-
49
+
41
50
- name : Run lint check
42
- run : npm run lint:eslint
51
+ run : pnpm run lint:eslint
43
52
44
53
type-check :
45
54
needs : lint-and-type-checking-install
50
59
with :
51
60
fetch-depth : 0
52
61
62
+ - name : Cache pnpm store
63
+ id : cache
64
+ uses : actions/cache@v3
65
+ with :
66
+ path : ~/.pnpm-store
67
+ key : ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
68
+ restore-keys : |
69
+ ${{ runner.os }}-pnpm-
70
+
53
71
- name : Run type check
54
- run : npm run type:check
72
+ run : pnpm run type:check
You can’t perform that action at this time.
0 commit comments