Skip to content

Commit 7f54f43

Browse files
committed
set CI fail-fast to false
1 parent 27fc14f commit 7f54f43

File tree

5 files changed

+10
-1
lines changed

5 files changed

+10
-1
lines changed

.github/workflows/build-and-test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
strategy:
15+
fail-fast: false
1516
matrix:
1617
node: [ '20', '22' ]
1718

.github/workflows/deploy-storybook.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ permissions:
1414
jobs:
1515
deploy-storybook:
1616
runs-on: ubuntu-latest
17+
strategy: fail-fast: false
1718
name: Deploy Storybook
1819
environment:
1920
name: github-pages

.github/workflows/package-release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@ jobs:
1313
if: |
1414
startsWith(github.head_ref, 'release-')
1515
&& github.event.pull_request.merged
16-
16+
17+
strategy:
18+
fail-fast: false
19+
1720
steps:
1821
- name: Checkout out repository
1922
uses: actions/checkout@v3

.github/workflows/publish-next.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ on:
88
jobs:
99
publish-next:
1010
runs-on: ubuntu-latest
11+
strategy:
12+
fail-fast: false
1113
name: Publish next to Github Packages
1214
steps:
1315
- name: Check out repository

.github/workflows/release-please.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ name: release-please
1414
jobs:
1515
release-please:
1616
runs-on: ubuntu-latest
17+
strategy:
18+
fail-fast: false
1719
steps:
1820
- uses: google-github-actions/release-please-action@v3
1921
with:

0 commit comments

Comments
 (0)