File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 15
15
# ignore all-contributors PRs
16
16
if : ${{ !contains(github.head_ref, 'all-contributors') }}
17
17
strategy :
18
+ # Otherwise we would not know if the problem is tied to the Node.js version
19
+ fail-fast : false
18
20
matrix :
19
- node : [12, 14, 16]
21
+ # TODO: relax `'16.9.1'` to `16` once GitHub has 16.9.1 cached. 16.9.0 is broken due to https://github.com/nodejs/node/issues/40030
22
+ node : [12, 14, '16.9.1']
20
23
runs-on : ubuntu-latest
21
24
steps :
22
25
- name : 🛑 Cancel Previous Runs
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import {waitForOptions} from './wait-for'
3
3
4
4
export type WithSuggest = { suggest ?: boolean }
5
5
6
- export type GetErrorFunction < Arguments extends any [ ] = [ alt : string ] > = (
6
+ export type GetErrorFunction < Arguments extends any [ ] = [ string ] > = (
7
7
c : Element | null ,
8
8
...args : Arguments
9
9
) => string
You can’t perform that action at this time.
0 commit comments