feat: Report benchmark results (no-changelog) (#10534)

This commit is contained in:
Tomi Turtiainen
2024-08-23 16:59:19 +03:00
committed by GitHub
parent a6f4dbb0ab
commit 7194b1c3a1
9 changed files with 361 additions and 19 deletions

View File

@@ -31,11 +31,19 @@ const configSchema = {
},
},
},
k6ExecutablePath: {
doc: 'The path to the k6 binary',
format: String,
default: 'k6',
env: 'K6_PATH',
k6: {
executablePath: {
doc: 'The path to the k6 binary',
format: String,
default: 'k6',
env: 'K6_PATH',
},
apiToken: {
doc: 'The API token for k6 cloud',
format: String,
default: undefined,
env: 'K6_API_TOKEN',
},
},
};