Files
flipper/.github/workflows/nodejs-pkg.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
419 B
YAML

name: PKG Node CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
env:
pkg-directory: ./desktop/pkg
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '12.x'
- name: install
working-directory: ${{env.pkg-directory}}
run: yarn
- name: run
working-directory: ${{env.pkg-directory}}
run: bin/run