2022-04-21 13:55:32 +02:00
|
|
|
name: Static Analysis
|
|
|
|
on:
|
2022-12-12 12:24:14 +01:00
|
|
|
pull_request: {}
|
2023-04-06 15:41:20 +02:00
|
|
|
merge_group:
|
|
|
|
types: [checks_requested]
|
2022-12-12 12:24:14 +01:00
|
|
|
push:
|
|
|
|
branches: [develop, master]
|
|
|
|
repository_dispatch:
|
|
|
|
types: [upstream-sdk-notify]
|
2023-04-06 10:57:24 +02:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
|
|
|
|
cancel-in-progress: true
|
2023-05-25 15:50:17 +02:00
|
|
|
|
2022-04-29 12:07:42 +02:00
|
|
|
env:
|
2023-05-25 15:50:17 +02:00
|
|
|
# fetchdep.sh needs to know our PR number
|
2022-12-12 12:24:14 +01:00
|
|
|
PR_NUMBER: ${{ github.event.pull_request.number }}
|
2023-05-25 15:50:17 +02:00
|
|
|
|
2022-04-21 13:55:32 +02:00
|
|
|
jobs:
|
2022-12-12 12:24:14 +01:00
|
|
|
ts_lint:
|
|
|
|
name: "Typescript Syntax Check"
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
cache: "yarn"
|
|
|
|
|
|
|
|
- name: Install Deps
|
|
|
|
run: "./scripts/ci/install-deps.sh --ignore-scripts"
|
|
|
|
|
|
|
|
- name: Typecheck
|
|
|
|
run: "yarn run lint:types"
|
|
|
|
|
|
|
|
- name: Switch js-sdk to release mode
|
|
|
|
working-directory: node_modules/matrix-js-sdk
|
|
|
|
run: |
|
|
|
|
scripts/switch_package_to_release.js
|
|
|
|
yarn install
|
|
|
|
yarn run build:compile
|
|
|
|
yarn run build:types
|
|
|
|
|
|
|
|
- name: Typecheck (release mode)
|
|
|
|
run: "yarn run lint:types"
|
|
|
|
|
|
|
|
i18n_lint:
|
|
|
|
name: "i18n Check"
|
|
|
|
uses: matrix-org/matrix-react-sdk/.github/workflows/i18n_check.yml@develop
|
|
|
|
|
|
|
|
rethemendex_lint:
|
|
|
|
name: "Rethemendex Check"
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- run: ./res/css/rethemendex.sh
|
|
|
|
|
|
|
|
- run: git diff --exit-code
|
|
|
|
|
|
|
|
js_lint:
|
|
|
|
name: "ESLint"
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
cache: "yarn"
|
|
|
|
|
|
|
|
# Does not need branch matching as only analyses this layer
|
|
|
|
- name: Install Deps
|
|
|
|
run: "yarn install"
|
|
|
|
|
|
|
|
- name: Run Linter
|
|
|
|
run: "yarn run lint:js"
|
|
|
|
|
|
|
|
style_lint:
|
|
|
|
name: "Style Lint"
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
cache: "yarn"
|
|
|
|
|
|
|
|
# Does not need branch matching as only analyses this layer
|
|
|
|
- name: Install Deps
|
|
|
|
run: "yarn install"
|
|
|
|
|
|
|
|
- name: Run Linter
|
|
|
|
run: "yarn run lint:style"
|
|
|
|
|
|
|
|
analyse_dead_code:
|
|
|
|
name: "Analyse Dead Code"
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
cache: "yarn"
|
|
|
|
|
|
|
|
- name: Install Deps
|
|
|
|
run: "scripts/ci/layered.sh"
|
|
|
|
|
|
|
|
- name: Dead Code Analysis
|
|
|
|
run: |
|
|
|
|
cd element-web
|
|
|
|
yarn run analyse:unused-exports
|