flakiness 0.289.0 → 0.291.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/lib/cli/cli.js +1 -1
- package/package.json +3 -3
- package/types/tsconfig.tsbuildinfo +1 -1
package/README.md
CHANGED
|
@@ -47,7 +47,7 @@ flakiness upload ./report.json --endpoint https://custom.flakiness.io
|
|
|
47
47
|
The CLI authenticates without an access token when CI can mint an OIDC token for it and the report contains a `flakinessProject` field. Reporters set `flakinessProject` automatically. Two providers are supported:
|
|
48
48
|
|
|
49
49
|
- **GitHub Actions** — grant the job `id-token: write` permission.
|
|
50
|
-
- **GitLab CI/CD**
|
|
50
|
+
- **GitLab CI/CD** — declare a `FLAKINESS_ID_TOKEN` entry under `id_tokens:` in `.gitlab-ci.yml`, with `aud` set to your `org/project`. Hosted Flakiness.io accepts tokens from gitlab.com; self-hosted deployments use their configured `GITLAB_ORIGIN`.
|
|
51
51
|
|
|
52
52
|
**Options:**
|
|
53
53
|
- `-t, --access-token <token>` — Read-write access token (env: `FLAKINESS_ACCESS_TOKEN`)
|
package/lib/cli/cli.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "flakiness",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.291.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"bin": {
|
|
6
6
|
"flakiness": "./lib/cli/cli.js"
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"@types/debug": "^4.1.13",
|
|
24
24
|
"@types/express": "^4.17.25",
|
|
25
25
|
"gray-matter": "^4.0.3",
|
|
26
|
-
"@flakiness/
|
|
27
|
-
"@flakiness/
|
|
26
|
+
"@flakiness/server": "0.291.0",
|
|
27
|
+
"@flakiness/shared": "0.291.0"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@flakiness/flakiness-report": "^0.36.0",
|