Travis CI allows for testing many versions, while marking some of the versions as allowed failures:
node_js:
- '6'
- '8'
- '10'
matrix:
fast_finish: true
allow_failures:
- node_js: '6'
It would be nice if this package returned the following in the above instance:
{
supported: ['8', '10'],
unsupported: ['6'],
all: ['6', '8', '10']
}
Pay now to fund the work behind this issue.
Get updates on progress being made.
Maintainer is rewarded once the issue is completed.
You're funding impactful open source efforts
You want to contribute to this effort
You want to get funding like this too