Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DNM: Test split render #24847

Closed
wants to merge 2 commits into from
Closed
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
6 changes: 5 additions & 1 deletion .github/workflows/pr-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,11 @@ jobs:

# Don't use `yarn build` (from mdn/content) because that one hardcodes
# the BUILD_OUT_ROOT and CONTENT_ROOT env vars.
node node_modules/@mdn/yari/build/cli.js ${GIT_DIFF_CONTENT}
CLI_DIR='node_modules/@mdn/yari/build'
node "${CLI_DIR}/cli.js -n ${GIT_DIFF_CONTENT}

# render all the pages
node "${CLI_DIR}/ssr-cli.js"

echo "Disk usage size of build"
du -sh ${BUILD_OUT_ROOT}
Expand Down
2 changes: 0 additions & 2 deletions files/zh-cn/web/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,6 @@ l10n:
- : 可扩展样式表语言转换是一种基于 [XML](/zh-CN/docs/Web/XML/XML_introduction) 的语言,和专门的处理软件一起使用,用于 XML 文档转换。
- [XPath](/zh-CN/docs/Web/XPath)
- : XPath 使用非 XML 语法来提供一种灵活地定位(指向)[XML](/zh-CN/docs/Web/XML) 文档的不同部分的方法。它也可以用于检查文档中某个定位节点是否与某个模式(pattern)匹配。
- [EXSLT](/zh-CN/docs/Web/EXSLT)
- : EXSLT 是一组 [XSLT](/zh-CN/docs/Web/XSLT) 的扩展。

## 开发者工具文档

Expand Down
Loading