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: -