Skip to content

[MOO-1870] Upgrade React to v19 and React Native to v0.78 #63

[MOO-1870] Upgrade React to v19 and React Native to v0.78

[MOO-1870] Upgrade React to v19 and React Native to v0.78 #63

Workflow file for this run

name: CI
on:
pull_request:
jobs:
lint-and-build:
name: Lint, Type Check & Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd
- name: Setup Node
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020
with:
node-version-file: '.nvmrc'
- name: Enable corepack
run: corepack enable
- name: Install dependencies
run: yarn install --immutable
- name: Type check
run: yarn typecheck
- name: Lint check
run: yarn lint
- name: Build
run: yarn prepare