Skip to content

Commit

Permalink
fix: Remove unnecessary condition in CI workflow, which caused the fr…
Browse files Browse the repository at this point in the history
…ontend coverage job to run for every commit in a PR (#700)
  • Loading branch information
drikusroor authored Jan 9, 2024
1 parent fa07689 commit 28c00bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
name: Generate Frontend Coverage Badge
needs: frontend-test
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop' || 1 == 1 # TODO: Remove last condition
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop'
steps:
- uses: actions/checkout@v3
- name: Generate Frontend Coverage Report (XML) and Badge
Expand Down

0 comments on commit 28c00bf

Please sign in to comment.