2022-04-21 14:55:32 +03:00
|
|
|
name: Static Analysis
|
|
|
|
on:
|
|
|
|
pull_request: {}
|
2023-04-06 16:41:20 +03:00
|
|
|
merge_group:
|
|
|
|
types: [checks_requested]
|
2022-04-21 14:55:32 +03:00
|
|
|
push:
|
|
|
|
branches: [develop, master]
|
|
|
|
repository_dispatch:
|
|
|
|
types: [upstream-sdk-notify]
|
2023-04-06 11:57:24 +03:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
|
|
|
|
cancel-in-progress: true
|
2023-05-25 16:50:17 +03:00
|
|
|
|
2022-04-29 13:07:42 +03:00
|
|
|
env:
|
2023-05-25 16:50:17 +03:00
|
|
|
# fetchdep.sh needs to know our PR number
|
2022-04-29 13:07:42 +03:00
|
|
|
PR_NUMBER: ${{ github.event.pull_request.number }}
|
2023-05-25 16:50:17 +03:00
|
|
|
|
2022-04-21 14:55:32 +03:00
|
|
|
jobs:
|
|
|
|
ts_lint:
|
|
|
|
name: "Typescript Syntax Check"
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-12-01 09:33:34 +03:00
|
|
|
- uses: actions/checkout@v3
|
2022-12-12 14:24:14 +03:00
|
|
|
|
2022-04-21 14:55:32 +03:00
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
cache: "yarn"
|
2022-12-12 14:24:14 +03:00
|
|
|
|
2022-04-21 14:55:32 +03:00
|
|
|
- name: Install Deps
|
|
|
|
run: "./scripts/ci/install-deps.sh --ignore-scripts"
|
2022-12-12 14:24:14 +03:00
|
|
|
|
2022-04-21 14:55:32 +03:00
|
|
|
- name: Typecheck
|
|
|
|
run: "yarn run lint:types"
|
2022-12-12 14:24:14 +03:00
|
|
|
|
2022-04-21 14:55:32 +03:00
|
|
|
- name: Switch js-sdk to release mode
|
2022-09-30 19:12:16 +03:00
|
|
|
working-directory: node_modules/matrix-js-sdk
|
2022-04-21 14:55:32 +03:00
|
|
|
run: |
|
2022-09-30 19:12:16 +03:00
|
|
|
scripts/switch_package_to_release.js
|
2022-04-21 14:55:32 +03:00
|
|
|
yarn install
|
|
|
|
yarn run build:compile
|
|
|
|
yarn run build:types
|
2022-12-12 14:24:14 +03:00
|
|
|
|
2022-04-21 14:55:32 +03:00
|
|
|
- name: Typecheck (release mode)
|
|
|
|
run: "yarn run lint:types"
|
2022-12-12 14:24:14 +03:00
|
|
|
|
2023-07-25 11:29:52 +03:00
|
|
|
# Temporary while we directly import matrix-js-sdk/src/* which means we need
|
|
|
|
# certain @types/* packages to make sense of matrix-js-sdk types.
|
2023-08-02 17:11:50 +03:00
|
|
|
- name: Typecheck (release mode; no yarn link)
|
|
|
|
if: github.event_name != 'pull_request' && github.ref_name != 'master'
|
|
|
|
run: |
|
|
|
|
yarn unlink matrix-js-sdk
|
|
|
|
yarn add github:matrix-org/matrix-js-sdk#develop
|
|
|
|
yarn install --force
|
|
|
|
yarn run lint:types
|
2023-07-25 11:29:52 +03:00
|
|
|
|
2022-04-21 14:55:32 +03:00
|
|
|
i18n_lint:
|
2022-05-03 12:39:03 +03:00
|
|
|
name: "i18n Check"
|
2022-05-20 02:36:58 +03:00
|
|
|
uses: matrix-org/matrix-react-sdk/.github/workflows/i18n_check.yml@develop
|
2022-12-12 14:24:14 +03:00
|
|
|
|
2022-11-14 21:31:20 +03:00
|
|
|
rethemendex_lint:
|
|
|
|
name: "Rethemendex Check"
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-12-01 09:33:34 +03:00
|
|
|
- uses: actions/checkout@v3
|
2022-12-12 14:24:14 +03:00
|
|
|
|
2022-11-14 21:31:20 +03:00
|
|
|
- run: ./res/css/rethemendex.sh
|
2022-12-12 14:24:14 +03:00
|
|
|
|
2022-11-14 21:31:20 +03:00
|
|
|
- run: git diff --exit-code
|
2022-12-12 14:24:14 +03:00
|
|
|
|
2022-04-21 14:55:32 +03:00
|
|
|
js_lint:
|
|
|
|
name: "ESLint"
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-12-01 09:33:34 +03:00
|
|
|
- uses: actions/checkout@v3
|
2022-12-12 14:24:14 +03:00
|
|
|
|
2022-04-21 14:55:32 +03:00
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
cache: "yarn"
|
2022-12-12 14:24:14 +03:00
|
|
|
|
2022-04-21 14:55:32 +03:00
|
|
|
# Does not need branch matching as only analyses this layer
|
|
|
|
- name: Install Deps
|
|
|
|
run: "yarn install"
|
2022-12-12 14:24:14 +03:00
|
|
|
|
2022-04-21 14:55:32 +03:00
|
|
|
- name: Run Linter
|
|
|
|
run: "yarn run lint:js"
|
2022-12-12 14:24:14 +03:00
|
|
|
|
2022-04-21 14:55:32 +03:00
|
|
|
style_lint:
|
|
|
|
name: "Style Lint"
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-12-01 09:33:34 +03:00
|
|
|
- uses: actions/checkout@v3
|
2022-12-12 14:24:14 +03:00
|
|
|
|
2022-04-21 14:55:32 +03:00
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
cache: "yarn"
|
2022-12-12 14:24:14 +03:00
|
|
|
|
2022-04-21 14:55:32 +03:00
|
|
|
# Does not need branch matching as only analyses this layer
|
|
|
|
- name: Install Deps
|
|
|
|
run: "yarn install"
|
2022-12-12 14:24:14 +03:00
|
|
|
|
2022-04-21 14:55:32 +03:00
|
|
|
- name: Run Linter
|
|
|
|
run: "yarn run lint:style"
|
2022-12-12 14:24:14 +03:00
|
|
|
|
2022-08-04 11:00:49 +03:00
|
|
|
analyse_dead_code:
|
|
|
|
name: "Analyse Dead Code"
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-12-01 09:33:34 +03:00
|
|
|
- uses: actions/checkout@v3
|
2022-12-12 14:24:14 +03:00
|
|
|
|
2022-08-04 11:00:49 +03:00
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
cache: "yarn"
|
2022-12-12 14:24:14 +03:00
|
|
|
|
2022-08-04 11:00:49 +03:00
|
|
|
- name: Install Deps
|
|
|
|
run: "scripts/ci/layered.sh"
|
2022-12-12 14:24:14 +03:00
|
|
|
|
2022-08-04 11:00:49 +03:00
|
|
|
- name: Dead Code Analysis
|
|
|
|
run: |
|
2022-08-24 13:08:26 +03:00
|
|
|
cd element-web
|
2022-08-04 11:00:49 +03:00
|
|
|
yarn run analyse:unused-exports
|