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
33 changes: 31 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,35 @@ env:
SERVER_BINARY: build/bin/server_node.js

jobs:
# Change detection ([CI-PATH-FILTER]). Website-only PRs skip the Dart
# lint/test/build jobs; code-only PRs skip the website job. Job-level `if`
# skips report a "skipped" conclusion that SATISFIES required status checks —
# unlike workflow-level `paths:` filters, which leave required checks pending
# forever and block the merge. So we gate here, never with `on: paths`.
changes:
name: Detect changes
runs-on: ubuntu-latest
timeout-minutes: 5
outputs:
code: ${{ steps.filter.outputs.code }}
website: ${{ steps.filter.outputs.website }}
steps:
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v3
id: filter
with:
filters: |
website:
- 'website/**'
code:
- '!website/**'

lint:
name: Lint
runs-on: ubuntu-latest
timeout-minutes: 10
needs: changes
if: needs.changes.outputs.code == 'true'
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
Expand Down Expand Up @@ -88,7 +113,8 @@ jobs:
name: Test
runs-on: ubuntu-latest
timeout-minutes: 10
needs: lint
needs: [changes, lint]
if: needs.changes.outputs.code == 'true'
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
Expand Down Expand Up @@ -143,7 +169,8 @@ jobs:
name: Build
runs-on: ubuntu-latest
timeout-minutes: 10
needs: test
needs: [changes, test]
if: needs.changes.outputs.code == 'true'
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
Expand All @@ -169,6 +196,8 @@ jobs:
name: Website Tests
runs-on: ubuntu-latest
timeout-minutes: 10
needs: changes
if: needs.changes.outputs.website == 'true'
steps:
- uses: actions/checkout@v4

Expand Down
9 changes: 0 additions & 9 deletions website/src/index.njk
Original file line number Diff line number Diff line change
Expand Up @@ -375,15 +375,6 @@ ReactElement counter() {
<a href="https://github.com/MelbourneDeveloper/dart_node/tree/main/packages/dart_node_vsix" target="_blank" rel="noopener noreferrer" class="pub-link">Source &rarr;</a>
</div>
</div>

<div class="feature-card">
<div class="feature-icon" style="background: #8e44ad;">T</div>
<h3>Too Many Cooks</h3>
<p>Multi-agent coordination MCP server, originally built with dart_node_mcp. It has moved to its own home and is no longer part of this repo.</p>
<div class="feature-links">
<a href="https://tmc-mcp.dev" target="_blank" rel="noopener noreferrer" class="pub-link">tmc-mcp.dev &rarr;</a>
</div>
</div>
</div>
</div>
</section>
Expand Down
7 changes: 0 additions & 7 deletions website/src/zh/index.njk
Original file line number Diff line number Diff line change
Expand Up @@ -247,13 +247,6 @@ ReactElement counter() {
<p>VSCode 扩展 API 绑定,使用 Dart 构建 Visual Studio Code 扩展。</p>
<a href="https://github.com/MelbourneDeveloper/dart_node/tree/main/packages/dart_node_vsix" target="_blank" rel="noopener noreferrer">在 GitHub 查看源码 &rarr;</a>
</div>

<div class="feature-card">
<div class="feature-icon" style="background: #8e44ad;">T</div>
<h3>Too Many Cooks</h3>
<p>多 AI 代理协调 MCP 服务器,最初使用 dart_node_mcp 构建。它已迁移到独立站点,不再是本仓库的一部分。</p>
<a href="https://tmc-mcp.dev" target="_blank" rel="noopener noreferrer">tmc-mcp.dev &rarr;</a>
</div>
</div>
</div>
</section>
Expand Down
Loading