From 1d7b194abb4a741006efc865ea6575b36df86a03 Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Mon, 14 Oct 2019 08:36:05 -0700 Subject: [PATCH] Run lint and build step (#583) Summary: This should just work, but let's see what CI says. Pull Request resolved: https://github.com/facebook/flipper/pull/583 Reviewed By: jknoxville Differential Revision: D17906598 Pulled By: passy fbshipit-source-id: 5de686c8c9b23b101999da938d6e8f9baff7bc86 --- .github/workflows/nodejs.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 13d2926cb..c873a1236 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -17,7 +17,11 @@ jobs: uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - - name: yarn install, build, and test - run: | - yarn - yarn test + - name: yarn install + run: yarn + - name: lint + run: yarn lint + - name: test + run: yarn test + - name: build + run: yarn build --linux