Skip to content

Commit

Permalink
Fix custom test-lint action - specify required shell param
Browse files Browse the repository at this point in the history
  • Loading branch information
yamalight committed Oct 21, 2024
1 parent 88b87d4 commit 5637b39
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/actions/test-lint/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,28 @@ runs:
# install deps
- name: Install lib deps
working-directory: ./packages/litlytics
shell: bash
run: bun install --frozen-lockfile
- name: Install app deps
shell: bash
run: bun install --frozen-lockfile
# lib lint/check/test
- name: Run lib typecheck
working-directory: ./packages/litlytics
shell: bash
run: bun run typecheck
- name: Run lib tests
working-directory: ./packages/litlytics
shell: bash
run: bun run test:ci

# main app lint/check/test
- name: Run app eslint
shell: bash
run: bun run lint
- name: Run app typecheck
shell: bash
run: bun run typecheck
- name: Run app test
shell: bash
run: bun run test:ci

0 comments on commit 5637b39

Please sign in to comment.