Skip to content

Replaced the defunct example app with a new RN75 one #8

Replaced the defunct example app with a new RN75 one

Replaced the defunct example app with a new RN75 one #8

Workflow file for this run

name: Node Environment
on: [push, pull_request]
jobs:
node-lint-tests:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[skip ci]')"
steps:
- name: checkout
uses: actions/checkout@v2
- name: setup node
uses: actions/setup-node@v1
with:
node-version: 20
- name: install node_modules
run: |
yarn install --frozen-lockfile
yarn --cwd example/RNBGUExample install --frozen-lockfile
- name: node lint
run:
yarn lint:ci