mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
Add static analysis for tsc --strict (#23140)
This commit is contained in:
parent
6cc71e1f13
commit
a9d1fd7cdf
35
.github/workflows/static_analysis.yaml
vendored
35
.github/workflows/static_analysis.yaml
vendored
@ -79,3 +79,38 @@ jobs:
|
|||||||
|
|
||||||
- name: Dead Code Analysis
|
- name: Dead Code Analysis
|
||||||
run: "yarn run analyse:unused-exports"
|
run: "yarn run analyse:unused-exports"
|
||||||
|
|
||||||
|
tsc-strict:
|
||||||
|
name: Typescript Strict Error Checker
|
||||||
|
if: github.event_name == 'pull_request'
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
pull-requests: read
|
||||||
|
checks: write
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Get diff lines
|
||||||
|
id: diff
|
||||||
|
uses: Equip-Collaboration/diff-line-numbers@v1.0.0
|
||||||
|
with:
|
||||||
|
include: '["\\.tsx?$"]'
|
||||||
|
|
||||||
|
- name: Detecting files changed
|
||||||
|
id: files
|
||||||
|
uses: futuratrepadeira/changed-files@v3.2.1
|
||||||
|
with:
|
||||||
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
pattern: '^.*\.tsx?$'
|
||||||
|
|
||||||
|
- uses: t3chguy/typescript-check-action@main
|
||||||
|
with:
|
||||||
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
use-check: true
|
||||||
|
check-fail-mode: added
|
||||||
|
output-behaviour: annotate
|
||||||
|
ts-extra-args: '--strict'
|
||||||
|
files-changed: ${{ steps.files.outputs.files_updated }}
|
||||||
|
files-added: ${{ steps.files.outputs.files_created }}
|
||||||
|
files-deleted: ${{ steps.files.outputs.files_deleted }}
|
||||||
|
line-numbers: ${{ steps.diff.outputs.lineNumbers }}
|
||||||
|
Loading…
Reference in New Issue
Block a user