Summary: Pull Request resolved: https://github.com/facebook/flipper/pull/3241 Fixes https://github.com/facebook/flipper/issues/3196 Reviewed By: lawrencelomax Differential Revision: D33403962 fbshipit-source-id: 3f282e5bd10fc25f72cac58fa97f026e00a87dae
24 lines
441 B
YAML
24 lines
441 B
YAML
name: Doctor Node CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: 'ubuntu-latest'
|
|
|
|
env:
|
|
doctor-directory: ./desktop/doctor
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: '14.x'
|
|
- name: install
|
|
working-directory: ${{env.doctor-directory}}
|
|
run: yarn
|
|
- name: run
|
|
working-directory: ${{env.doctor-directory}}
|
|
run: yarn run run
|