@zenuml/core 3.49.4 → 3.49.6

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 CHANGED
@@ -49,20 +49,16 @@ bun dev
49
49
 
50
50
  ## CI/CD
51
51
 
52
- CI/CD is done with GitHub Actions. The workflow is defined in `.github/workflows/*.yml`.
52
+ CI/CD is done with GitHub Actions (`.github/workflows/`):
53
53
 
54
- ## gh-pages.yml
54
+ - **`cd.yml`** — runs on every push and pull request: lint + unit tests (`test`),
55
+ Playwright E2E (`e2e`, via `e2e.yml`), then — only if both pass — publishes
56
+ `@zenuml/core` to npm (on `main`) and deploys the demo site to Cloudflare
57
+ Workers (production on `main`, staging otherwise). See [DEPLOYMENT.md](./DEPLOYMENT.md).
58
+ - **`e2e.yml`** — reusable Playwright workflow, called by `cd.yml` or run manually.
59
+ - **`update-snapshots.yml`** — manually triggered; regenerates Linux visual snapshots.
55
60
 
56
- This workflow has two jobs: `build` -> `deploy`.
57
-
58
- ```text
59
- test -> npm publish
60
- -> cy tests
61
- -> build site -> deploy gh-pages
62
- ```
63
-
64
- This workflow is triggered on every push to the `main` branch.
65
- It will build the project and publish the `dist` folder to the `gh-pages` branch.
61
+ The DSL syntax reference lives at [docs/DSL_SYNTAX.md](./docs/DSL_SYNTAX.md).
66
62
 
67
63
  ## Put localhost on the internet
68
64