Skip to content

Commit f73b0b7

Browse files
committed
Disable fail fast for non-generated workflows
1 parent c59e052 commit f73b0b7

File tree

5 files changed

+6
-0
lines changed

5 files changed

+6
-0
lines changed

.github/workflows/codeql.yml

+1
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ jobs:
7373
build:
7474
needs: [check-codeql-versions]
7575
strategy:
76+
fail-fast: false
7677
matrix:
7778
os: [ubuntu-20.04,ubuntu-22.04,windows-2019,windows-2022,macos-11,macos-12,macos-13]
7879
tools: ${{ fromJson(needs.check-codeql-versions.outputs.versions) }}

.github/workflows/codescanning-config-cli.yml

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
continue-on-error: true
2525

2626
strategy:
27+
fail-fast: false
2728
matrix:
2829
include:
2930
- os: ubuntu-latest

.github/workflows/debug-artifacts.yml

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ on:
2222
jobs:
2323
upload-artifacts:
2424
strategy:
25+
fail-fast: false
2526
matrix:
2627
version:
2728
- stable-20230403

.github/workflows/pr-checks.yml

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616
timeout-minutes: 45
1717

1818
strategy:
19+
fail-fast: false
1920
matrix:
2021
node-types-version: [16.11, current] # run tests on 16.11 while CodeQL Action v2 is still supported
2122

@@ -89,6 +90,7 @@ jobs:
8990
name: Unit Test
9091
needs: [check-js, check-node-modules]
9192
strategy:
93+
fail-fast: false
9294
matrix:
9395
os: [ubuntu-latest, macos-latest, windows-latest]
9496
runs-on: ${{ matrix.os }}

.github/workflows/test-codeql-bundle-all.yml

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ on:
2222
jobs:
2323
test-codeql-bundle-all:
2424
strategy:
25+
fail-fast: false
2526
matrix:
2627
include:
2728
- os: ubuntu-latest

0 commit comments

Comments
 (0)