Skip to content

Commit

Permalink
ci: rollback workflows unit test case
Browse files Browse the repository at this point in the history
  • Loading branch information
WDTI0\dimas.prasetyo committed Mar 28, 2024
1 parent 201b3d1 commit 184fdf3
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,10 @@ jobs:
run: |
if npm run test:ci; then
echo "AWESOME UNIT TEST IS PASSED !"
echo "unit_test_status=success" >> $GITHUB_ENV
else
echo "PLEASE BE AWARE TEST HAS BEEN FAILED !"
echo "unit_test_status=failure" >> $GITHUB_ENV
fi
- name: Check test status
run: exit 1
if: ${{ steps.unit-tests.outputs.unit_test_status == 'failure' }}
if: ${{ steps.unit-tests.outputs.status == 'failure' }}

0 comments on commit 184fdf3

Please sign in to comment.