Skip to content

Commit

Permalink
Disable check for frontend changes
Browse files Browse the repository at this point in the history
  • Loading branch information
hannes-mk committed Dec 13, 2024
1 parent 14acd6f commit feaf509
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions .github/workflows/frontend-jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,8 @@ on:
workflow_call:

jobs:
confirm-frontend-changes:
runs-on: ubuntu-latest
outputs:
frontend: ${{ steps.filter.outputs.frontend }}
steps:
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v3
id: filter
with:
filters: |
frontend:
- 'frontend/**'

linting-formatting-frontend:
needs: confirm-frontend-changes
if: ${{ needs.scan-frontend-changes.outputs.frontend == 'true' }}
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -54,7 +41,6 @@ jobs:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}

unit-tests-frontend:
needs: confirm-frontend-changes
if: ${{ needs.scan-frontend-changes.outputs.frontend == 'true' }}
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -92,7 +78,6 @@ jobs:
# SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}

e2e-tests-frontend:
needs: confirm-frontend-changes
if: ${{ needs.scan-frontend-changes.outputs.frontend == 'true' }}
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit feaf509

Please sign in to comment.