Skip to content

Commit

Permalink
fix: workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Keyrxng committed May 20, 2024
1 parent 35fbf7e commit 5f7b03f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/jest-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,14 @@ jobs:
- uses: actions/checkout@master
with:
fetch-depth: 0

- name: Install dependencies
run: yarn install

- name: Build & Run test suite
run: |
yarn &&
yarn test | tee ./coverage.txt && exit ${PIPESTATUS[0]}
- name: Jest Coverage Comment
# Ensures this step is run even on previous step failure (e.g. test failed)
if: always()
Expand Down

0 comments on commit 5f7b03f

Please sign in to comment.