mirror of
https://github.com/vector-im/element-call.git
synced 2024-11-21 00:28:08 +08:00
25 lines
690 B
YAML
25 lines
690 B
YAML
name: Lint, format & type check
|
|
on:
|
|
pull_request: {}
|
|
jobs:
|
|
prettier:
|
|
name: Lint, format & type check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
|
|
- name: Yarn cache
|
|
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4
|
|
with:
|
|
cache: "yarn"
|
|
- name: Install dependencies
|
|
run: "yarn install"
|
|
- name: Prettier
|
|
run: "yarn run prettier:check"
|
|
- name: i18n
|
|
run: "yarn run i18n:check"
|
|
- name: ESLint
|
|
run: "yarn run lint:eslint"
|
|
- name: Type check
|
|
run: "yarn run lint:types"
|