From 5c43965f0bc44f991ada7d3bad68937a80665dc3 Mon Sep 17 00:00:00 2001 From: undergroundwires Date: Sun, 28 Mar 2021 14:26:09 +0100 Subject: [PATCH] in CI/CD, run other tests/check even if one of them fails --- .github/workflows/quality-checks.yaml | 1 + .github/workflows/test.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/quality-checks.yaml b/.github/workflows/quality-checks.yaml index 1aea712b..d9b7fca3 100644 --- a/.github/workflows/quality-checks.yaml +++ b/.github/workflows/quality-checks.yaml @@ -13,6 +13,7 @@ jobs: - npm run lint:md - npm run lint:md:relative-urls - npm run lint:md:consistency + fail-fast: false # So it continues with other commands if one fails steps: - name: Checkout uses: actions/checkout@v2 diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index ebf5bf13..3baa2425 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -7,6 +7,7 @@ jobs: strategy: matrix: os: [macos, ubuntu, windows] + fail-fast: false # So it still runs on other OSes if one of them fails runs-on: ${{ matrix.os }}-latest steps: -