Skip to content

Commit

Permalink
Run frontend jobs unconditionally
Browse files Browse the repository at this point in the history
  • Loading branch information
hannes-mk committed Dec 13, 2024
1 parent feaf509 commit d2e9d28
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/frontend-jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
jobs:

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

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

e2e-tests-frontend:
if: ${{ needs.scan-frontend-changes.outputs.frontend == 'true' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ on:
workflow_dispatch:

jobs:

##############################################
# jobs dispatched to separate workflow files #
##############################################

frontend-checks:
uses: ./.github/workflows/frontend-jobs.yml
secrets: inherit

0 comments on commit d2e9d28

Please sign in to comment.