2022-05-07 05:55:47 +08:00
|
|
|
name: Lint, format & type check
|
2022-05-03 21:24:04 +08:00
|
|
|
on:
|
|
|
|
pull_request: {}
|
|
|
|
jobs:
|
|
|
|
prettier:
|
2022-05-07 05:55:47 +08:00
|
|
|
name: Lint, format & type check
|
2022-05-03 21:24:04 +08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
2024-06-21 21:21:08 +08:00
|
|
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
|
2022-05-03 21:24:04 +08:00
|
|
|
- name: Yarn cache
|
2024-08-01 09:04:00 +08:00
|
|
|
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
|
2022-05-03 21:24:04 +08:00
|
|
|
with:
|
2022-12-10 03:34:25 +08:00
|
|
|
cache: "yarn"
|
2024-07-24 23:12:36 +08:00
|
|
|
node-version: "lts/*"
|
2022-05-03 21:24:04 +08:00
|
|
|
- name: Install dependencies
|
|
|
|
run: "yarn install"
|
2022-05-03 22:32:16 +08:00
|
|
|
- name: Prettier
|
2022-05-03 21:24:04 +08:00
|
|
|
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
|
2023-07-04 20:51:06 +08:00
|
|
|
run: "yarn run lint:eslint"
|
2022-05-07 05:55:47 +08:00
|
|
|
- name: Type check
|
|
|
|
run: "yarn run lint:types"
|
2024-08-28 08:06:57 +08:00
|
|
|
- name: Dead code analysis
|
|
|
|
run: "yarn run lint:knip"
|