From c7095a690a813bf4ed4c6af0a0a4761d3a6a093f Mon Sep 17 00:00:00 2001 From: Jon Janzen Date: Wed, 6 May 2020 15:31:24 -0700 Subject: [PATCH] Upgrade node and remove fail-fast --- .github/workflows/ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9bc8f087..db34418f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,14 +5,12 @@ on: [push, pull_request] jobs: website: runs-on: ubuntu-latest - strategy: - fail-fast: false steps: - uses: actions/checkout@v2 - - name: Use Node.js 8 + - name: Setup Node.js uses: actions/setup-node@v1 with: - node-version: 8.x + node-version: 12.x - name: Install dependencies run: yarn install --frozen-lockfile --ignore-scripts working-directory: website