@test-station/cli 0.2.16 → 0.2.18
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 +3 -3
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -271,18 +271,18 @@ yarn playwright install --with-deps
|
|
|
271
271
|
|
|
272
272
|
### Publishing CI Runs To `/api/ingest`
|
|
273
273
|
|
|
274
|
-
The deployed server accepts machine reports at `POST /api/ingest` with shared-key auth. The checked-in
|
|
274
|
+
The deployed server accepts machine reports at `POST /api/ingest` with shared-key auth. The checked-in staging release workflow publishes the self-test report to `https://test-station.smysnk.com/api/ingest`.
|
|
275
275
|
|
|
276
276
|
What is sent:
|
|
277
277
|
|
|
278
278
|
- `report.json` as the canonical run payload
|
|
279
|
-
- run metadata from GitHub Actions such as repository, branch, tag, commit SHA, actor, run URL, workflow, run number, attempt,
|
|
279
|
+
- run metadata from GitHub Actions such as repository, branch, tag, commit SHA, actor, run URL, workflow, run number, attempt, build start/end timestamps, and the default non-secret GitHub Actions environment variables
|
|
280
280
|
- artifact metadata for every file under the report output directory, including `report.json`, `modules.json`, `ownership.json`, `index.html`, and everything under `raw/`
|
|
281
281
|
|
|
282
282
|
Shared-key auth:
|
|
283
283
|
|
|
284
284
|
- the server reads `INGEST_SHARED_KEY`
|
|
285
|
-
- the
|
|
285
|
+
- the staging release workflow reads the GitHub Actions secret `TEST_STATION_INGEST_SHARED_KEY`
|
|
286
286
|
- set them to the same value
|
|
287
287
|
|
|
288
288
|
Optional S3-backed artifact storage:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@test-station/cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.18",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
".": "./src/index.js"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@test-station/core": "0.2.
|
|
16
|
-
"@test-station/render-html": "0.2.
|
|
15
|
+
"@test-station/core": "0.2.18",
|
|
16
|
+
"@test-station/render-html": "0.2.18"
|
|
17
17
|
},
|
|
18
18
|
"scripts": {
|
|
19
19
|
"build": "node ../../scripts/check-package.mjs ./src/index.js && node --check ./src/cli.js",
|