Commit 5637b39 1 parent 88b87d4 commit 5637b39 Copy full SHA for 5637b39
File tree 1 file changed +7
-0
lines changed
.github/actions/test-lint
1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -11,21 +11,28 @@ runs:
11
11
# install deps
12
12
- name : Install lib deps
13
13
working-directory : ./packages/litlytics
14
+ shell : bash
14
15
run : bun install --frozen-lockfile
15
16
- name : Install app deps
17
+ shell : bash
16
18
run : bun install --frozen-lockfile
17
19
# lib lint/check/test
18
20
- name : Run lib typecheck
19
21
working-directory : ./packages/litlytics
22
+ shell : bash
20
23
run : bun run typecheck
21
24
- name : Run lib tests
22
25
working-directory : ./packages/litlytics
26
+ shell : bash
23
27
run : bun run test:ci
24
28
25
29
# main app lint/check/test
26
30
- name : Run app eslint
31
+ shell : bash
27
32
run : bun run lint
28
33
- name : Run app typecheck
34
+ shell : bash
29
35
run : bun run typecheck
30
36
- name : Run app test
37
+ shell : bash
31
38
run : bun run test:ci
You can’t perform that action at this time.
0 commit comments