Skip to content

Commit

Permalink
Merge pull request #53 from AstarNetwork/alert-except-timeout
Browse files Browse the repository at this point in the history
update periodic check workflow
  • Loading branch information
ermalkaleci authored Jul 24, 2024
2 parents 1c27109 + 40b3cc3 commit 3326486
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,16 @@ jobs:
with:
node-version: 18.x
cache: 'yarn'

- run: yarn --immutable

- run: yarn update-env
- run: yarn test tests/${{ matrix.tests }}

- id: test
run: yarn test tests/${{ matrix.tests }}

- uses: ravsamhq/notify-slack-action@v2
if: ${{ failure() }}
if: ${{ failure() && !contains(steps.test.outputs.stdout, 'Test timed out') }}
with:
status: ${{ job.status }}
env:
Expand Down

0 comments on commit 3326486

Please sign in to comment.