Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/changeset-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ jobs:

- run: npm ci --no-audit --no-fund

- name: Build all workspaces
# build-publishable / paths.mjs 运行时依赖 @sfmc-bds/sdk dist(与 ootb.yml 对齐)
run: npm run build --workspaces --if-present

- name: build publishable workspaces
# DRY:包清单与拓扑权威在 packages/tools/lib/npm-publish-packages.mjs,勿在此再抄 workspace 列表
run: node packages/tools/build-publishable.mjs
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ jobs:
npm ci
pip install -r docs/requirements.txt

- name: Build all workspaces
# packages/tools/lib/paths.mjs 运行时依赖 @sfmc-bds/sdk dist(与 ootb.yml 对齐)
run: npm run build --workspaces --if-present

- name: Build docs (TypeDoc + MkDocs)
env:
# Material / ProperDocs 的 MkDocs 2.0 提示(与 packages/tools/docs-mkdocs.mjs 一致)
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,11 @@ jobs:
- run: npm ci --no-audit --no-fund
if: steps.meta.outputs.already_published != 'true'

- name: Build all workspaces
if: steps.meta.outputs.already_published != 'true'
# build-publishable / paths.mjs 运行时依赖 @sfmc-bds/sdk dist(与 ootb.yml 对齐)
run: npm run build --workspaces --if-present

- name: build target + publishable deps
if: steps.meta.outputs.already_published != 'true'
# DRY/OCP:依赖闭包由 listPublishableBuildDeps 派生,勿硬编码只 build SDK
Expand Down