Skip to content

Commit

Permalink
ci: add a step to collect check result
Browse files Browse the repository at this point in the history
  • Loading branch information
meteorlxy committed Sep 26, 2023
1 parent 807127b commit 1cfd813
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,12 @@ jobs:

- name: Docs build
run: pnpm docs:build

check-result:
if: ${{ always() }}
name: check result
runs-on: ubuntu-latest
needs: [check]
steps:
- if: ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') }}
run: exit 1

1 comment on commit 1cfd813

@vercel
Copy link

@vercel vercel bot commented on 1cfd813 Sep 26, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

vue-showdown – ./

vue-showdown.vercel.app
vue-showdown-meteorlxy.vercel.app
vue-showdown-git-main-meteorlxy.vercel.app

Please sign in to comment.