Skip to content

Commit 27a70de

Browse files
committed
💚 Continue on error and no fail fast
Signed-off-by: kei-g <km.8k6ce+github@gmail.com>
1 parent 5a2337b commit 27a70de

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
jobs:
22
build:
3+
continue-on-error: true
34
name: Build on Node.js ${{ matrix.node }}
45
runs-on: ubuntu-latest
56
strategy:
7+
fail-fast: false
68
matrix:
79
node:
810
- '14.17.5'
@@ -22,9 +24,11 @@ jobs:
2224
- name: Build
2325
run: npm run build
2426
coverage:
27+
continue-on-error: true
2528
name: Check code coverages on Node.js ${{ matrix.node }}
2629
runs-on: ubuntu-latest
2730
strategy:
31+
fail-fast: false
2832
matrix:
2933
node:
3034
- '14.17.5'
@@ -50,9 +54,11 @@ jobs:
5054
name: code-coverage-report-${{ matrix.node }}
5155
path: coverage
5256
example:
57+
continue-on-error: true
5358
name: Run an example on Node.js ${{ matrix.node }}
5459
runs-on: ubuntu-latest
5560
strategy:
61+
fail-fast: false
5662
matrix:
5763
node:
5864
- '14.17.5'

0 commit comments

Comments
 (0)