element-call-Github/.github/workflows/lint.yaml
Robin Townsend 90ef5505bb Apply Prettier to the entire project
This ensures that our tests will be formatted by Prettier, among other things.
2022-12-09 14:34:25 -05:00

25 lines
600 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@v2
- name: Yarn cache
uses: actions/setup-node@v3
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:js"
- name: Type check
run: "yarn run lint:types"