Skip to content

Commit

Permalink
Merge pull request #1666 from rodekruis/ci.test-workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
gulfaraz authored Oct 22, 2024
2 parents c78b5d5 + 1a731f2 commit 085c18c
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@ jobs:
- run: npm test

ibf-integration:
needs: detect-changes
if: ${{ needs.detect-changes.outputs.ibf-api-service == 'true' }}

runs-on: ubuntu-latest

steps:
Expand All @@ -80,6 +83,12 @@ jobs:
mailchimp-api-key: ${{ secrets.MC_API }}

ibf-e2e:
needs: detect-changes
if: ${{
needs.detect-changes.outputs.ibf-api-service == 'true' ||
needs.detect-changes.outputs.ibf-dashboard == 'true'
}}

runs-on: ubuntu-latest

steps:
Expand Down Expand Up @@ -113,4 +122,3 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}
git-message: 'chore(release): {version}'
release-count: 10

0 comments on commit 085c18c

Please sign in to comment.