element-web/.github/workflows/static_analysis.yaml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

145 lines
4.1 KiB
YAML
Raw Normal View History

2022-04-21 14:55:32 +03:00
name: Static Analysis
on:
pull_request: {}
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
env:
# fetchdep.sh needs to know our PR number
PR_NUMBER: ${{ github.event.pull_request.number }}
2022-04-21 14:55:32 +03:00
jobs:
ts_lint:
name: "Typescript Syntax Check"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
2022-12-12 14:24:14 +03:00
- uses: actions/setup-node@v4
2022-04-21 14:55:32 +03:00
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
working-directory: node_modules/matrix-js-sdk
2022-04-21 14:55:32 +03:00
run: |
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
# 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-14 11:43:47 +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
2022-04-21 14:55:32 +03:00
i18n_lint:
2022-05-03 12:39:03 +03:00
name: "i18n Check"
uses: matrix-org/matrix-web-i18n/.github/workflows/i18n_check.yml@main
with:
hardcoded-words: "Element"
allowed-hardcoded-keys: |
console_dev_note
labs|element_call_video_rooms
labs|feature_disable_call_per_sender_encryption
voip|element_call
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:
- 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-12 14:24:14 +03:00
2022-04-21 14:55:32 +03:00
js_lint:
name: "ESLint"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
2022-12-12 14:24:14 +03:00
- uses: actions/setup-node@v4
2022-04-21 14:55:32 +03:00
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:
- uses: actions/checkout@v4
2022-12-12 14:24:14 +03:00
- uses: actions/setup-node@v4
2022-04-21 14:55:32 +03:00
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
workflow_lint:
name: "Workflow Lint"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: "yarn"
# 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 11:00:49 +03:00
analyse_dead_code:
name: "Analyse Dead Code"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
2022-12-12 14:24:14 +03:00
- uses: actions/setup-node@v4
2022-08-04 11:00:49 +03:00
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: |
cd element-web
2022-08-04 11:00:49 +03:00
yarn run analyse:unused-exports