element-call-Github/.github/workflows/lint.yaml

25 lines
604 B
YAML
Raw Normal View History

name: Lint, format & type check
on:
pull_request: {}
jobs:
prettier:
name: Lint, format & type check
runs-on: ubuntu-latest
steps:
- name: Checkout code
2023-09-19 17:24:34 +08:00
uses: actions/checkout@v4
- name: Yarn cache
2023-10-24 00:19:30 +08:00
uses: actions/setup-node@v4
with:
cache: "yarn"
- name: Install dependencies
run: "yarn install"
2022-05-03 22:32:16 +08:00
- name: Prettier
run: "yarn run prettier:check"
2022-10-24 22:53:55 +08:00
- name: i18n
run: "yarn run i18n:check"
2022-05-03 22:32:16 +08:00
- name: ESLint
run: "yarn run lint:eslint"
- name: Type check
run: "yarn run lint:types"