-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: move job to steps due to mq issue
- Loading branch information
Showing
1 changed file
with
5 additions
and
11 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 |
---|---|---|
|
@@ -132,7 +132,7 @@ jobs: | |
- name: Test | ||
if: inputs.ENABLE_TESTING && inputs.ENABLE_COVERAGE | ||
run: yarn test:cov | ||
|
||
- name: Upload coverage to Coveralls | ||
if: inputs.ENABLE_TESTING && inputs.ENABLE_COVERAGE | ||
uses: coverallsapp/[email protected] | ||
|
@@ -191,18 +191,12 @@ jobs: | |
storybook-preview-url: ${{ steps.storybook.outputs.preview-url }} | ||
playwright-preview-url: ${{ steps.playwright.outputs.preview-url }} | ||
|
||
notification: | ||
if: always() && inputs.ENABLE_SLACK_NOTIFICATION | ||
name: notification | ||
needs: [verify] | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 5 | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/[email protected] | ||
|
||
- name: Get workflow conclusion | ||
if: inputs.ENABLE_SLACK_NOTIFICATION | ||
- uses: technote-space/[email protected] | ||
|
||
- name: Send Slack notification | ||
if: inputs.ENABLE_SLACK_NOTIFICATION | ||
- uses: reside-eng/[email protected] | ||
with: | ||
current-status: ${{ env.WORKFLOW_CONCLUSION }} | ||
|