Skip to content

Commit

Permalink
Add GHA for Dead Code Analysis (#22830)
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonBrandner authored Aug 4, 2022
1 parent 31636dc commit 0d18e4e
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/static_analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,19 @@ jobs:

- name: Run Linter
run: "yarn run lint:style"

analyse_dead_code:
name: "Analyse Dead Code"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- uses: actions/setup-node@v3
with:
cache: 'yarn'

- name: Install Deps
run: "scripts/layered.sh"

- name: Dead Code Analysis
run: "yarn run analyse:unused-exports"

0 comments on commit 0d18e4e

Please sign in to comment.