Skip to content

Commit a9cbaec

Browse files
authored
feat(ci): fix ci should not stop when one action fails
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
1 parent 1f0733d commit a9cbaec

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ jobs:
55
name: Test build process on node ${{ matrix.node-version }}
66
runs-on: ubuntu-latest
77
strategy:
8+
fail-fast: false
89
matrix:
910
node-version: [12, 14, 16]
1011
steps:

0 commit comments

Comments
 (0)