Summary: This is too aggressive right now. Pull Request resolved: https://github.com/facebook/flipper/pull/867 Reviewed By: nikoant Differential Revision: D20279641 Pulled By: passy fbshipit-source-id: cdf1d65f0d4137ab689d228846e9c20ec1230b1a
24 lines
403 B
YAML
24 lines
403 B
YAML
name: PKG Node CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: '12.x'
|
|
- name: install
|
|
working-directory: pkg
|
|
run: yarn
|
|
- name: test
|
|
working-directory: pkg
|
|
run: yarn test
|
|
- name: run
|
|
working-directory: pkg
|
|
run: bin/run
|