Skip to content

Update React Native code formatting #189

Update React Native code formatting

Update React Native code formatting #189

Workflow file for this run

name: Static checks
on:
pull_request:
jobs:
types_and_lint:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: Use corepack
run: corepack enable
- name: Install node dependencies
run: yarn --immutable
- name: Spellcheck
run: yarn spellcheck:report
- name: Check formatting
run: yarn format:check
- name: Check types
run: yarn typecheck
- name: Check build
run: yarn build