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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
pnpm check:release-order "$BASE_SHA"

- name: Type and content checks
run: pnpm test:home && pnpm test:deploy:dev && pnpm test:release-update && pnpm check:release && pnpm check
run: pnpm test:spec && pnpm test:home && pnpm test:deploy:dev && pnpm test:release-update && pnpm check:release && pnpm check
env:
GH_TOKEN: ${{ github.token }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
MDBASE_TS_DIR: .sources/mdbase

- name: Check and build website
run: pnpm test:home && pnpm check:release && pnpm check && pnpm build
run: pnpm test:spec && pnpm test:home && pnpm check:release && pnpm check && pnpm build
env:
GH_TOKEN: ${{ github.token }}

Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@ pnpm check:links

The website repository owns the ecosystem pages and deployment cadence. The
normative specification is built by `mdbase-spec` and imported under `/spec/`.
The import preserves its content and section anchors, inserting them into the
Astro specification shells (current and v0.2 archive). Those shells use the same
`BaseLayout`, fonts, theme control, and documentation styles as `/sdk/`; the
upstream site's header, scripts, and stylesheet are deliberately not imported.
Run `pnpm import:spec` after building to populate these shells; `pnpm dev` alone
shows the shell without the normative content.
Connect schemas, theme roles, the homepage particle field, and implementation
claims are synchronized from their canonical repositories. Generated assets
remain traceable to the release artifacts they document.
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
"test:deploy:dev": "node --test scripts/deploy-pages-dev.test.mjs",
"test:release-update": "node --test scripts/connect-release-record.test.mjs",
"test:home": "node --test scripts/home-animation.test.mjs",
"test": "pnpm test:home && pnpm test:deploy:dev && pnpm test:release-update && pnpm check:release && pnpm check && pnpm build && pnpm import:spec && pnpm check:links"
"test:spec": "node --test scripts/spec-page.test.mjs",
"test": "pnpm test:spec && pnpm test:home && pnpm test:deploy:dev && pnpm test:release-update && pnpm check:release && pnpm check && pnpm build && pnpm import:spec && pnpm check:links"
},
"dependencies": {
"@astrojs/sitemap": "^3.7.3",
Expand Down
Loading