2022-05-16 17:23:44 +03:00
|
|
|
name: Static Analysis
|
|
|
|
on:
|
|
|
|
pull_request: {}
|
|
|
|
push:
|
|
|
|
branches: [develop, master]
|
2024-01-08 15:35:42 +03:00
|
|
|
merge_group:
|
|
|
|
types: [checks_requested]
|
2022-05-16 17:23:44 +03:00
|
|
|
repository_dispatch:
|
2024-10-16 11:49:09 +03:00
|
|
|
types: [element-web-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-05-16 17:23:44 +03:00
|
|
|
env:
|
|
|
|
# These must be set for fetchdep.sh to get the right branch
|
|
|
|
REPOSITORY: ${{ github.repository }}
|
|
|
|
PR_NUMBER: ${{ github.event.pull_request.number }}
|
2023-05-25 16:50:17 +03:00
|
|
|
|
2022-05-16 17:23:44 +03:00
|
|
|
jobs:
|
|
|
|
ts_lint:
|
|
|
|
name: "Typescript Syntax Check"
|
2024-10-17 13:10:32 +03:00
|
|
|
runs-on: ubuntu-24.04
|
2022-05-16 17:23:44 +03:00
|
|
|
steps:
|
2023-09-05 20:31:32 +03:00
|
|
|
- uses: actions/checkout@v4
|
2022-12-09 15:28:29 +03:00
|
|
|
|
2023-10-31 21:42:07 +03:00
|
|
|
- uses: actions/setup-node@v4
|
2022-05-16 17:23:44 +03:00
|
|
|
with:
|
|
|
|
cache: "yarn"
|
2024-07-04 16:26:58 +03:00
|
|
|
node-version: "lts/*"
|
2022-12-09 15:28:29 +03:00
|
|
|
|
2022-05-16 17:23:44 +03:00
|
|
|
- name: Install Dependencies
|
|
|
|
run: "./scripts/layered.sh"
|
2022-12-09 15:28:29 +03:00
|
|
|
|
2022-05-16 17:23:44 +03:00
|
|
|
- name: Typecheck
|
|
|
|
run: "yarn run lint:types"
|
2022-12-09 15:28:29 +03:00
|
|
|
|
2022-05-16 17:23:44 +03:00
|
|
|
i18n_lint:
|
|
|
|
name: "i18n Check"
|
2023-09-05 19:17:25 +03:00
|
|
|
uses: matrix-org/matrix-web-i18n/.github/workflows/i18n_check.yml@main
|
2024-02-29 12:52:41 +03:00
|
|
|
with:
|
|
|
|
hardcoded-words: "Element"
|
2024-02-29 16:02:46 +03:00
|
|
|
allowed-hardcoded-keys: |
|
|
|
|
console_dev_note
|
|
|
|
labs|element_call_video_rooms
|
|
|
|
labs|feature_disable_call_per_sender_encryption
|
|
|
|
voip|element_call
|
2024-10-15 17:43:46 +03:00
|
|
|
error|invalid_json
|
|
|
|
error|misconfigured
|
|
|
|
welcome_to_element
|
2022-12-12 14:24:14 +03:00
|
|
|
|
2022-11-14 21:31:20 +03:00
|
|
|
rethemendex_lint:
|
|
|
|
name: "Rethemendex Check"
|
2024-11-13 14:13:02 +03:00
|
|
|
runs-on: ubuntu-24.04
|
2022-11-14 21:31:20 +03:00
|
|
|
steps:
|
2023-09-06 21:30:45 +03:00
|
|
|
- uses: actions/checkout@v4
|
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-09 15:28:29 +03:00
|
|
|
|
2022-05-16 17:23:44 +03:00
|
|
|
js_lint:
|
|
|
|
name: "ESLint"
|
2024-10-17 13:10:32 +03:00
|
|
|
runs-on: ubuntu-24.04
|
2022-05-16 17:23:44 +03:00
|
|
|
steps:
|
2023-09-05 20:31:32 +03:00
|
|
|
- uses: actions/checkout@v4
|
2022-12-09 15:28:29 +03:00
|
|
|
|
2023-10-31 21:42:07 +03:00
|
|
|
- uses: actions/setup-node@v4
|
2022-05-16 17:23:44 +03:00
|
|
|
with:
|
|
|
|
cache: "yarn"
|
2024-07-04 16:26:58 +03:00
|
|
|
node-version: "lts/*"
|
2022-12-09 15:28:29 +03:00
|
|
|
|
2022-05-16 17:23:44 +03:00
|
|
|
# Does not need branch matching as only analyses this layer
|
|
|
|
- name: Install Deps
|
2023-03-31 17:52:29 +03:00
|
|
|
run: "yarn install --frozen-lockfile"
|
2022-12-09 15:28:29 +03:00
|
|
|
|
2022-05-16 17:23:44 +03:00
|
|
|
- name: Run Linter
|
|
|
|
run: "yarn run lint:js"
|
2022-12-09 15:28:29 +03:00
|
|
|
|
2022-05-16 17:23:44 +03:00
|
|
|
style_lint:
|
|
|
|
name: "Style Lint"
|
2024-10-17 13:10:32 +03:00
|
|
|
runs-on: ubuntu-24.04
|
2022-05-16 17:23:44 +03:00
|
|
|
steps:
|
2023-09-05 20:31:32 +03:00
|
|
|
- uses: actions/checkout@v4
|
2022-12-09 15:28:29 +03:00
|
|
|
|
2023-10-31 21:42:07 +03:00
|
|
|
- uses: actions/setup-node@v4
|
2022-05-16 17:23:44 +03:00
|
|
|
with:
|
|
|
|
cache: "yarn"
|
2024-07-04 16:26:58 +03:00
|
|
|
node-version: "lts/*"
|
2022-12-09 15:28:29 +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-09 15:28:29 +03:00
|
|
|
|
2022-05-16 17:23:44 +03:00
|
|
|
- name: Run Linter
|
|
|
|
run: "yarn run lint:style"
|
2022-12-09 15:28:29 +03:00
|
|
|
|
2023-11-21 21:45:44 +03:00
|
|
|
workflow_lint:
|
|
|
|
name: "Workflow Lint"
|
2024-10-17 13:10:32 +03:00
|
|
|
runs-on: ubuntu-24.04
|
2023-11-21 21:45:44 +03:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
|
|
|
|
- uses: actions/setup-node@v4
|
|
|
|
with:
|
|
|
|
cache: "yarn"
|
2024-07-04 16:26:58 +03:00
|
|
|
node-version: "lts/*"
|
2023-11-21 21:45:44 +03:00
|
|
|
|
|
|
|
# Does not need branch matching as only analyses this layer
|
|
|
|
- name: Install Deps
|
|
|
|
run: "yarn install --frozen-lockfile"
|
|
|
|
|
|
|
|
- name: Run Linter
|
|
|
|
run: "yarn lint:workflows"
|
|
|
|
|
2022-08-04 19:34:02 +03:00
|
|
|
analyse_dead_code:
|
|
|
|
name: "Analyse Dead Code"
|
2024-10-17 13:10:32 +03:00
|
|
|
runs-on: ubuntu-24.04
|
2022-08-04 19:34:02 +03:00
|
|
|
steps:
|
2023-09-05 20:31:32 +03:00
|
|
|
- uses: actions/checkout@v4
|
2022-12-09 15:28:29 +03:00
|
|
|
|
2023-10-31 21:42:07 +03:00
|
|
|
- uses: actions/setup-node@v4
|
2022-08-04 19:34:02 +03:00
|
|
|
with:
|
|
|
|
cache: "yarn"
|
2024-07-04 16:26:58 +03:00
|
|
|
node-version: "lts/*"
|
2022-12-09 15:28:29 +03:00
|
|
|
|
2024-11-05 21:40:20 +03:00
|
|
|
- name: Install Deps
|
|
|
|
run: "yarn install --frozen-lockfile"
|
|
|
|
|
|
|
|
- name: Run linter
|
|
|
|
run: "yarn run lint:knip"
|
|
|
|
|
2022-08-04 19:34:02 +03:00
|
|
|
- name: Install Deps
|
|
|
|
run: "scripts/layered.sh"
|
2022-12-09 15:28:29 +03:00
|
|
|
|
2022-08-04 19:34:02 +03:00
|
|
|
- name: Dead Code Analysis
|
|
|
|
run: "yarn run analyse:unused-exports"
|