Skip to content

Commit 5637b39

Browse files
committed
Fix custom test-lint action - specify required shell param
1 parent 88b87d4 commit 5637b39

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/actions/test-lint/action.yml

+7
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,28 @@ runs:
1111
# install deps
1212
- name: Install lib deps
1313
working-directory: ./packages/litlytics
14+
shell: bash
1415
run: bun install --frozen-lockfile
1516
- name: Install app deps
17+
shell: bash
1618
run: bun install --frozen-lockfile
1719
# lib lint/check/test
1820
- name: Run lib typecheck
1921
working-directory: ./packages/litlytics
22+
shell: bash
2023
run: bun run typecheck
2124
- name: Run lib tests
2225
working-directory: ./packages/litlytics
26+
shell: bash
2327
run: bun run test:ci
2428

2529
# main app lint/check/test
2630
- name: Run app eslint
31+
shell: bash
2732
run: bun run lint
2833
- name: Run app typecheck
34+
shell: bash
2935
run: bun run typecheck
3036
- name: Run app test
37+
shell: bash
3138
run: bun run test:ci

0 commit comments

Comments
 (0)