Skip to content

Add GitHub Actions for library and example apps #1

Add GitHub Actions for library and example apps

Add GitHub Actions for library and example apps #1

Workflow file for this run

name: Test TypeScript and Lint
on:
pull_request:
merge_group:
branches:
- main
push:
branches:
- main
jobs:
check:
if: github.repository == 'Expensify/react-native-live-markdown'
runs-on: ubuntu-latest
concurrency:
group: root-${{ github.ref }}
cancel-in-progress: true
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Install dependencies
run: yarn install --immutable
- name: Check types
run: yarn typecheck
- name: Lint
run: yarn lint:root
- name: Test
run: yarn test