2022-05-06 21:55:47 +00:00
|
|
|
name: Lint, format & type check
|
2022-05-03 13:24:04 +00:00
|
|
|
on:
|
|
|
|
pull_request: {}
|
|
|
|
jobs:
|
|
|
|
prettier:
|
2022-05-06 21:55:47 +00:00
|
|
|
name: Lint, format & type check
|
2022-05-03 13:24:04 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Yarn cache
|
|
|
|
uses: actions/setup-node@v3
|
|
|
|
with:
|
2022-12-09 19:34:25 +00:00
|
|
|
cache: "yarn"
|
2022-05-03 13:24:04 +00:00
|
|
|
- name: Install dependencies
|
|
|
|
run: "yarn install"
|
2022-05-03 14:32:16 +00:00
|
|
|
- name: Prettier
|
2022-05-03 13:24:04 +00:00
|
|
|
run: "yarn run prettier:check"
|
2022-10-24 14:53:55 +00:00
|
|
|
- name: i18n
|
|
|
|
run: "yarn run i18n:check"
|
2022-05-03 14:32:16 +00:00
|
|
|
- name: ESLint
|
2022-05-06 21:55:47 +00:00
|
|
|
run: "yarn run lint:js"
|
|
|
|
- name: Type check
|
|
|
|
run: "yarn run lint:types"
|