We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
fail-fast
1 parent 7241042 commit da9d9b8Copy full SHA for da9d9b8
.github/workflows/test.yml
@@ -5,9 +5,22 @@ on: [push, workflow_dispatch]
5
jobs:
6
test:
7
runs-on: ubuntu-latest
8
+
9
+ # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-preventing-a-specific-failing-matrix-job-from-failing-a-workflow-run
10
+ continue-on-error: ${{ matrix.experimental }}
11
strategy:
12
+ fail-fast: false
13
matrix:
- node: [12, 14, 16]
14
+ node: [12, 14]
15
+ experimental: [false]
16
+ include:
17
+ - node: 10
18
+ experimental: true
19
+ # v16 should work fine; there're some issues in CI with `krb5-config`
20
+ - node: 16
21
22
+ - node: 18
23
24
25
steps:
26
- uses: actions/checkout@v2
0 commit comments