Files
flipper/.github/workflows/nodejs-doctor.yml
Anton Nikolaev 3e853157da Do not run tests for "doctor" and "pkg" separately (#983)
Summary:
Pull Request resolved: https://github.com/facebook/flipper/pull/983

This diff fixes broken test jobs on GitHub. Tests for all the packages are already being run by the "yarn test" in the root package, so I'm disabling running them separately.

Reviewed By: jknoxville

Differential Revision: D20868138

fbshipit-source-id: 04a86a8127481fecaee63af1f9fd9c7ad0f4269b
2020-04-06 04:53:26 -07:00

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@v1
- uses: actions/setup-node@v1
with:
node-version: '12.x'
- name: install
working-directory: ${{env.doctor-directory}}
run: yarn
- name: run
working-directory: ${{env.doctor-directory}}
run: yarn run run