From 893da4f31279228ebec6fa208c34ef179a6ebaf4 Mon Sep 17 00:00:00 2001 From: JJ Kasper Date: Mon, 27 Jan 2020 11:56:36 -0600 Subject: [PATCH] Update to use node 10 and see if EPIPE error is still present --- .github/workflows/build_test_deploy.yml | 11 +++++++++++ .github/workflows/test_react_next.yml | 4 ++++ 2 files changed, 15 insertions(+) diff --git a/.github/workflows/build_test_deploy.yml b/.github/workflows/build_test_deploy.yml index de461e02c554a..09d95c8b46652 100644 --- a/.github/workflows/build_test_deploy.yml +++ b/.github/workflows/build_test_deploy.yml @@ -42,6 +42,9 @@ jobs: matrix: group: [1, 2, 3, 4, 5, 6] steps: + - uses: actions/setup-node@v1 + with: + node-version: 10 - uses: actions/cache@v1 id: restore-build with: @@ -58,6 +61,10 @@ jobs: runs-on: ubuntu-latest needs: build steps: + - uses: actions/setup-node@v1 + with: + node-version: 10 + - uses: actions/cache@v1 id: restore-build with: @@ -75,6 +82,10 @@ jobs: needs: build if: github.ref == 'canary' steps: + - uses: actions/setup-node@v1 + with: + node-version: 10 + - uses: actions/cache@v1 id: restore-build with: diff --git a/.github/workflows/test_react_next.yml b/.github/workflows/test_react_next.yml index 0cdcb04221d85..5c7fadc156d76 100644 --- a/.github/workflows/test_react_next.yml +++ b/.github/workflows/test_react_next.yml @@ -32,6 +32,10 @@ jobs: matrix: group: [1, 2, 3, 4, 5, 6] steps: + - uses: actions/setup-node@v1 + with: + node-version: 10 + - uses: actions/cache@v1 id: restore-build with: