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 }}