Enabled test suite for 4.0 branch

no issue

- we'd like to run the tests on the new 4.0 branch, so this commit add
  it to the trigger list and allows Slack notifications for failures
This commit is contained in:
Daniel Lockyer 2021-01-21 10:57:09 +00:00
parent ca16132f91
commit 8c030df0e4
No known key found for this signature in database
GPG Key ID: FFBC6FA2A6F6ABC1
1 changed files with 4 additions and 3 deletions

View File

@ -4,6 +4,7 @@ on:
push:
branches:
- master
- '4.0'
- 'renovate/*'
jobs:
prod-build:
@ -20,7 +21,7 @@ jobs:
- run: grunt shell:ember:prod
- uses: daniellockyer/action-slack-build@master
if: failure() && github.event_name == 'push' && github.ref == 'refs/heads/master'
if: failure() && github.event_name == 'push' && (github.ref == 'refs/heads/4.0' || github.ref == 'refs/heads/master')
with:
status: ${{ job.status }}
env:
@ -39,7 +40,7 @@ jobs:
- run: yarn lint:js
- uses: daniellockyer/action-slack-build@master
if: failure() && github.event_name == 'push' && github.ref == 'refs/heads/master'
if: failure() && github.event_name == 'push' && (github.ref == 'refs/heads/4.0' || github.ref == 'refs/heads/master')
with:
status: ${{ job.status }}
env:
@ -67,7 +68,7 @@ jobs:
BROWSER: ${{ matrix.browser }}
- uses: daniellockyer/action-slack-build@master
if: failure() && github.event_name == 'push' && github.ref == 'refs/heads/master'
if: failure() && github.event_name == 'push' && (github.ref == 'refs/heads/4.0' || github.ref == 'refs/heads/master')
with:
status: ${{ job.status }}
env: