From 440f76c3e8a70ac6f87eb3cf0936822cc382a69c Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Tue, 29 Nov 2022 15:43:08 +0000 Subject: [PATCH] Add a required tsc strict check for --noImplicitAny (#9647) --- .github/workflows/static_analysis.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/static_analysis.yaml b/.github/workflows/static_analysis.yaml index 4b31454e92..4c773f9258 100644 --- a/.github/workflows/static_analysis.yaml +++ b/.github/workflows/static_analysis.yaml @@ -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 @@ -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 }}