-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into 187147065-view-as-graph-multiple
- Loading branch information
Showing
76 changed files
with
1,146 additions
and
621 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 |
---|---|---|
|
@@ -99,3 +99,21 @@ jobs: | |
with: | ||
flags: cypress-regression | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
notify-slack: | ||
if: ${{ failure() && github.ref_name == 'master' }} | ||
needs: [regression] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Notify Slack the tests failed | ||
id: slack | ||
uses: slackapi/[email protected] | ||
with: | ||
# This data can be any valid JSON from a previous step in the GitHub Action | ||
payload: | | ||
{ | ||
"ref_name": "${{ github.ref_name }}", | ||
"workflow": "${{ github.workflow }}", | ||
"run_url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" | ||
} | ||
env: | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |
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 |
---|---|---|
|
@@ -149,4 +149,22 @@ jobs: | |
# be used. Instead the `|` turns the following lines into a string | ||
topBranches: | | ||
["master"] | ||
notify-slack: | ||
if: ${{ failure() && github.ref_name == 'master' }} | ||
needs: [jest,cypress] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Notify Slack the tests failed | ||
id: slack | ||
uses: slackapi/[email protected] | ||
with: | ||
# This data can be any valid JSON from a previous step in the GitHub Action | ||
payload: | | ||
{ | ||
"ref_name": "${{ github.ref_name }}", | ||
"workflow": "${{ github.workflow }}", | ||
"run_url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" | ||
} | ||
env: | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
|
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Regression Tests | ||
name: Daily Regression | ||
|
||
on: | ||
schedule: | ||
|
@@ -102,3 +102,21 @@ jobs: | |
CYPRESS_coverage: true | ||
# Increase memory allocation | ||
NODE_OPTIONS: "--max_old_space_size=4096" | ||
notify-slack: | ||
if: ${{ failure() }} | ||
needs: [all-tests] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Notify Slack the tests failed | ||
id: slack | ||
uses: slackapi/[email protected] | ||
with: | ||
# This data can be any valid JSON from a previous step in the GitHub Action | ||
payload: | | ||
{ | ||
"ref_name": "${{ github.ref_name }}", | ||
"workflow": "${{ github.workflow }}", | ||
"run_url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" | ||
} | ||
env: | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |
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
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
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
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
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
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
Oops, something went wrong.