-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generate status check for each workflow-triggered application workflo…
…w job
- Loading branch information
1 parent
81cb1d6
commit 605d6aa
Showing
2 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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' }} | ||
|
@@ -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 }} |