mirror of
https://github.com/vector-im/element-call.git
synced 2024-11-15 00:04:59 +08:00
26 lines
722 B
YAML
26 lines
722 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@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
|
|
with:
|
|
cache: "yarn"
|
|
node-version: "lts/*"
|
|
- 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"
|