mirror of
https://github.com/CringeStudios/element-desktop.git
synced 2025-01-19 07:54:59 +01:00
57 lines
1.2 KiB
YAML
57 lines
1.2 KiB
YAML
|
name: Static Analysis
|
||
|
on:
|
||
|
pull_request: { }
|
||
|
push:
|
||
|
branches: [ develop, master ]
|
||
|
jobs:
|
||
|
ts_lint:
|
||
|
name: "Typescript Syntax Check"
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
|
||
|
- uses: actions/setup-node@v3
|
||
|
with:
|
||
|
cache: 'yarn'
|
||
|
|
||
|
# Does not need branch matching as only analyses this layer
|
||
|
- name: Install Deps
|
||
|
run: "yarn install --pure-lockfile"
|
||
|
|
||
|
- name: Typecheck
|
||
|
run: "yarn run lint:types"
|
||
|
|
||
|
i18n_lint:
|
||
|
name: "i18n Diff Check"
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
|
||
|
- uses: actions/setup-node@v3
|
||
|
with:
|
||
|
cache: 'yarn'
|
||
|
|
||
|
# Does not need branch matching as only analyses this layer
|
||
|
- name: Install Deps
|
||
|
run: "yarn install --pure-lockfile"
|
||
|
|
||
|
- name: i18n Check
|
||
|
run: "yarn run diff-i18n"
|
||
|
|
||
|
js_lint:
|
||
|
name: "ESLint"
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
|
||
|
- uses: actions/setup-node@v3
|
||
|
with:
|
||
|
cache: 'yarn'
|
||
|
|
||
|
# Does not need branch matching as only analyses this layer
|
||
|
- name: Install Deps
|
||
|
run: "yarn install --pure-lockfile"
|
||
|
|
||
|
- name: Run Linter
|
||
|
run: "yarn run lint:js"
|