Skip to content

Commit

Permalink
Generate status check for each workflow-triggered application workflo…
Browse files Browse the repository at this point in the history
…w job
  • Loading branch information
ivangabriele committed Feb 28, 2024
1 parent 81cb1d6 commit 605d6aa
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/application_deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,10 @@ jobs:
echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u ${GITHUB_ACTOR} --password-stdin
make docker-tag
make docker-push
- uses: LouisBrunner/[email protected]
if: ${{ always() }}
with:
token: ${{ secrets.GITHUB_TOKEN }}
name: Application Deployment
conclusion: ${{ job.status }}
14 changes: 14 additions & 0 deletions .github/workflows/application_e2e_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,13 @@ jobs:
wait-on: "http://localhost:8880"
working-directory: ./frontend

- uses: LouisBrunner/[email protected]
if: ${{ always() }}
with:
token: ${{ secrets.GITHUB_TOKEN }}
name: Application Cypress E2E tests
conclusion: ${{ job.status }}

e2e_multi_windows_test:
name: Run E2E multi windows tests
if: ${{ github.event.workflow_run.conclusion == 'success' }}
Expand Down Expand Up @@ -132,3 +139,10 @@ jobs:
- name: Run multi-windows tests
run: npm run test:multi-windows:run
working-directory: ./frontend

- uses: LouisBrunner/[email protected]
if: ${{ always() }}
with:
token: ${{ secrets.GITHUB_TOKEN }}
name: Application Puppeteer E2E tests
conclusion: ${{ job.status }}

0 comments on commit 605d6aa

Please sign in to comment.