Skip to content

chore: migrate to npm #858

chore: migrate to npm

chore: migrate to npm #858

Workflow file for this run

name: Typecheck, lint and test
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: check-root-${{ github.ref }}
cancel-in-progress: true
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Use Node.js 18
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install node_modules
run: npm ci
- name: Verify there's no parser diff
working-directory: parser
run: |
npm run build
if ! git diff --name-only --exit-code; then
# shellcheck disable=SC2016
echo 'Error: Parser diff detected! Please run `cd parser && npm run build` and commit the changes.'
exit 1
fi
- name: Typecheck library
run: npm run tsc --project tsconfig.json --noEmit
- name: Typecheck parser
run: npm run tsc --project parser/tsconfig.json --noEmit
- name: Typecheck example app
run: npm run tsc --project example/tsconfig.json --noEmit
- name: Typecheck WebExample app
run: npm run tsc --project WebExample/tsconfig.json --noEmit
- name: Lint
run: npm run lint
- name: Test
run: npm run test