Skip to content

refactor: use node resolver to locate React Native package #1221

refactor: use node resolver to locate React Native package

refactor: use node resolver to locate React Native package #1221

Workflow file for this run

name: Test JS build
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
concurrency:
group: js-${{ github.ref }}
cancel-in-progress: true
steps:
- name: checkout
uses: actions/checkout@v2
- name: Use Node.js 18
uses: actions/setup-node@v2
with:
node-version: 18
cache: 'yarn'
cache-dependency-path: 'yarn.lock'
- name: Install node dependencies
run: yarn
- name: Build
run: yarn bob
- name: Test and lint
run: yarn test
- name: Build Example App
working-directory: example/
run: yarn && yarn tsc