Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Add a required tsc strict check for --noImplicitAny (#9647)
Browse files Browse the repository at this point in the history
  • Loading branch information
t3chguy authored Nov 29, 2022
1 parent dea7a03 commit 440f76c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/static_analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,12 @@ jobs:
permissions:
pull-requests: read
checks: write
strategy:
fail-fast: false
matrix:
args:
- '--strict --noImplicitAny'
- '--noImplicitAny'
steps:
- uses: actions/checkout@v3

Expand All @@ -69,7 +75,7 @@ jobs:
use-check: false
check-fail-mode: added
output-behaviour: annotate
ts-extra-args: '--strict --noImplicitAny'
ts-extra-args: ${{ matrix.args }}
files-changed: ${{ steps.files.outputs.files_updated }}
files-added: ${{ steps.files.outputs.files_created }}
files-deleted: ${{ steps.files.outputs.files_deleted }}
Expand Down

0 comments on commit 440f76c

Please sign in to comment.