From 9271d3b79ed1ad46ee163c11f0c9581bc22328a9 Mon Sep 17 00:00:00 2001 From: Paul Irish Date: Mon, 6 Apr 2020 12:46:16 -0700 Subject: [PATCH] build: fail-fast on gh basics workflow --- .github/workflows/basics.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/basics.yml b/.github/workflows/basics.yml index 09863524e8bb..54a494781751 100644 --- a/.github/workflows/basics.yml +++ b/.github/workflows/basics.yml @@ -11,6 +11,9 @@ jobs: basics: runs-on: ubuntu-latest + strategy: + # e.g. if lint fails, continue to the unit tests anyway + fail-fast: false steps: - name: git clone @@ -21,7 +24,7 @@ jobs: with: node-version: 10.x - # Cache yarn deps. thx https://github.com/actions/cache/blob/master/examples.md#node---yarn + # Cache yarn deps. thx https://github.com/actions/cache/blob/master/examples.md#node---yarn - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)"