From a0daaed0cbf00abae4b5bb14561218ee52fbaed3 Mon Sep 17 00:00:00 2001 From: Stephen Haberman Date: Sun, 7 Jun 2020 15:25:22 -0500 Subject: [PATCH] Send initial yarn install stderr to /dev/null to avoid false warnings. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3905e8d45..c10f64ab0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,7 +20,7 @@ jobs: with: node-version: ${{ matrix.node-version }} - name: install dependencies - run: yarn install || echo "ignore failure" + run: yarn install --ignore-scripts - name: pbjs run: ./pbjs.sh - name: Prepare Integration