Skip to content

Commit d94323b

Browse files
ci: fix some typos
1 parent f9f625b commit d94323b

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/actions/next-integration-stat/dist/index.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11574,7 +11574,7 @@ class Client extends DispatcherBase {
1157411574
}
1157511575

1157611576
if (maxConcurrentStreams != null && (typeof maxConcurrentStreams !== 'number' || maxConcurrentStreams < 1)) {
11577-
throw new InvalidArgumentError('maxConcurrentStreams must be a possitive integer, greater than 0')
11577+
throw new InvalidArgumentError('maxConcurrentStreams must be a positive integer, greater than 0')
1157811578
}
1157911579

1158011580
if (typeof connect !== 'function') {
@@ -33516,7 +33516,7 @@ class Client extends DispatcherBase {
3351633516
}
3351733517

3351833518
if (maxConcurrentStreams != null && (typeof maxConcurrentStreams !== 'number' || maxConcurrentStreams < 1)) {
33519-
throw new InvalidArgumentError('maxConcurrentStreams must be a possitive integer, greater than 0')
33519+
throw new InvalidArgumentError('maxConcurrentStreams must be a positive integer, greater than 0')
3352033520
}
3352133521

3352233522
if (typeof connect !== 'function') {
@@ -56282,7 +56282,7 @@ function getJobResults(octokit, token, sha) {
5628256282
}
5628356283
return acc;
5628456284
}, [[], []]);
56285-
console.log(`Flakyness test subset results`, { flakyMonitorJobResults });
56285+
console.log(`Flakiness test subset results`, { flakyMonitorJobResults });
5628656286
const testResultManifest = {
5628756287
ref: sha,
5628856288
flakyMonitorJobResults: flakyMonitorJobResults,
@@ -56302,7 +56302,7 @@ function getTestResultDiffBase(_octokit) {
5630256302
// all the previous test run data.
5630356303
//
5630456304
// The last update to that branch is from Dec 2023. If we want to support
56305-
// comparisions with the canary branch, we need to read this data from
56305+
// comparisons with the canary branch, we need to read this data from
5630656306
// somewhere else.
5630756307
return null;
5630856308
});
@@ -56474,7 +56474,7 @@ function run() {
5647456474
const passedTestsLists = [];
5647556475
// Collect failed test results for each job. We don't use this actively yet.
5647656476
const perJobFailedLists = {};
56477-
// Consturct a comment body to post test report with summary & full details.
56477+
// Construct a comment body to post test report with summary & full details.
5647856478
const comments = jobResults.result.reduce((acc, value, _idx) => {
5647956479
var _a, _b, _c, _d;
5648056480
const { data: testData } = value;

.github/actions/next-integration-stat/src/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ async function getJobResults(
214214
[[], []] as [Array<JobResult>, Array<JobResult>]
215215
)
216216

217-
console.log(`Flakyness test subset results`, { flakyMonitorJobResults })
217+
console.log(`Flakiness test subset results`, { flakyMonitorJobResults })
218218

219219
const testResultManifest: TestResultManifest = {
220220
ref: sha,
@@ -241,7 +241,7 @@ async function getTestResultDiffBase(
241241
// all the previous test run data.
242242
//
243243
// The last update to that branch is from Dec 2023. If we want to support
244-
// comparisions with the canary branch, we need to read this data from
244+
// comparisons with the canary branch, we need to read this data from
245245
// somewhere else.
246246
return null
247247
}
@@ -496,7 +496,7 @@ async function run() {
496496
// Collect failed test results for each job. We don't use this actively yet.
497497
const perJobFailedLists = {}
498498

499-
// Consturct a comment body to post test report with summary & full details.
499+
// Construct a comment body to post test report with summary & full details.
500500
const comments = jobResults.result.reduce((acc, value, _idx) => {
501501
const { data: testData } = value
502502

.github/workflows/integration_tests_reusable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
workflow_call:
55
inputs:
66
name:
7-
description: A unique identifer used for uploaded assets
7+
description: A unique identifier used for uploaded assets
88
type: string
99
test_type:
1010
description: '"development" or "production"'

0 commit comments

Comments
 (0)