Skip to content

Commit

Permalink
Merge pull request #921 from nextcloud/chore/typecheck-when-empty
Browse files Browse the repository at this point in the history
chore(ci): don't check typecheck result without the check
  • Loading branch information
ShGKme authored Nov 22, 2024
2 parents 21dbaf2 + f551da3 commit 0f8e3fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/lint-typescript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,4 +75,4 @@ jobs:

steps:
- name: Summary status
run: if ${{ needs.typecheck.result != 'success' }}; then exit 1; fi
run: if ${{ needs.changes.outputs.src != 'false' && needs.typecheck.result != 'success' }}; then exit 1; fi

0 comments on commit 0f8e3fc

Please sign in to comment.