@test-station/cli 0.2.17 → 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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -271,7 +271,7 @@ 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 GitHub Actions workflow publishes the self-test report to `https://test-station.smysnk.com/api/ingest`.
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
 
@@ -282,7 +282,7 @@ What is sent:
282
282
  Shared-key auth:
283
283
 
284
284
  - the server reads `INGEST_SHARED_KEY`
285
- - the CI workflow reads the GitHub Actions secret `TEST_STATION_INGEST_SHARED_KEY`
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.17",
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.17",
16
- "@test-station/render-html": "0.2.17"
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",