Skip to content

Commit 4bace52

Browse files
authored
Merge branch 'main' into main
2 parents a651967 + 8311c8d commit 4bace52

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/validate.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,11 @@ jobs:
1515
# ignore all-contributors PRs
1616
if: ${{ !contains(github.head_ref, 'all-contributors') }}
1717
strategy:
18+
# Otherwise we would not know if the problem is tied to the Node.js version
19+
fail-fast: false
1820
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']
2023
runs-on: ubuntu-latest
2124
steps:
2225
- name: 🛑 Cancel Previous Runs

types/query-helpers.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {waitForOptions} from './wait-for'
33

44
export type WithSuggest = {suggest?: boolean}
55

6-
export type GetErrorFunction<Arguments extends any[] = [alt: string]> = (
6+
export type GetErrorFunction<Arguments extends any[] = [string]> = (
77
c: Element | null,
88
...args: Arguments
99
) => string

0 commit comments

Comments
 (0)