Skip to content

Commit

Permalink
ci: add helper job
Browse files Browse the repository at this point in the history
  • Loading branch information
viceice authored Nov 29, 2023
1 parent d33f669 commit 0460740
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,16 @@ jobs:

- name: testing ${{ matrix.file }}
run: npx -p renovate renovate-config-validator

test-success:
runs-on: ubuntu-latest
needs:
- test
timeout-minutes: 1
if: always()
steps:
- name: Fail for failed or cancelled tests
if: |
needs.test.result == 'failure' ||
needs.test.result == 'cancelled'
run: exit 1

0 comments on commit 0460740

Please sign in to comment.