Skip to content

Commit

Permalink
Changed logic that triggers workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
kiwiswift committed Nov 12, 2024
1 parent aa6baa6 commit 8b0df47
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/frontend-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- run: echo "Skipping frontend tests ${{ needs.compare-changes.outputs.frontendDisable }}"
echo ${{ needs.compare-changes.outputs.frontendDisable == false }}
echo ${{ !needs.compare-changes.outputs.frontendDisable }}
echo ${{ needs.compare-changes.outputs.frontendDisable == 'false' }}
echo "Skipping backend tests ${{ needs.compare-changes.outputs.backendDisable }}"
echo ${{ needs.compare-changes.outputs.backendDisable == false }}
echo ${{ needs.compare-changes.outputs.backendDisable == true }}
echo ${{ needs.compare-changes.outputs.backendDisable == 'true' }}
frontend-test:
needs:
- compare-changes
Expand Down

0 comments on commit 8b0df47

Please sign in to comment.