Skip to content

Commit

Permalink
feat(ci): fix ci should not stop when one action fails
Browse files Browse the repository at this point in the history
We recently had a dependabot PR which fails for node 12. Unfortunately the default for githubs fast fail strategy is to stop every other test build

As we only set node 14 and 16 as required i would like to see if at least the required checks will build, so this PR sets fast fail to false
  • Loading branch information
lubber-de committed Apr 25, 2022
1 parent 1f0733d commit a9cbaec
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Expand Up @@ -5,6 +5,7 @@ jobs:
name: Test build process on node ${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [12, 14, 16]
steps:
Expand Down

0 comments on commit a9cbaec

Please sign in to comment.