Skip to content

Commit

Permalink
add check-applications check
Browse files Browse the repository at this point in the history
  • Loading branch information
mshima committed Oct 15, 2023
1 parent dbc8700 commit cc02a06
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/github-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,3 +103,16 @@ jobs:
- name: 'TESTS: run e2e'
run: npm run ci:e2e:run --if-present
if: matrix.e2e != 'false'
check-applications:
permissions:
contents: none
runs-on: ubuntu-latest
needs: [applications]
if: always()
steps:
- run: |
echo '${{ toJSON(needs) }}'
if [ 'skipped' == '${{ needs.applications.result }}' ] || [ 'success' == '${{ needs.applications.result }}' ] || [ 'closed' == '${{ github.event.action }}' ]; then
exit 0
fi
exit 1

0 comments on commit cc02a06

Please sign in to comment.