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

new: Implement a new action graph. #1093

Merged
merged 22 commits into from
Oct 6, 2023
Merged

new: Implement a new action graph. #1093

merged 22 commits into from
Oct 6, 2023

Conversation

milesj
Copy link
Collaborator

@milesj milesj commented Oct 2, 2023

This will replace the current dependency graph.

@github-actions
Copy link

github-actions bot commented Oct 2, 2023

Run report for b3bd043a (ubuntu-latest, 18)

Total time: 2m 18s | Comparison time: 7m 6s | Estimated savings: 4m 48s (67.5% faster)

Action Time Status Info
🟩 SetupNodeTool(18.18.0) 18.6s Passed
🟩 SyncNodeProject(types) 475.2ms Passed
🟩 InstallNodeDeps(18.18.0) 1m 29s Passed
🟦 RunTarget(types:build) 1.2s Cached
🟩 SyncNodeProject(runtime) 605.7ms Passed
🟦 RunTarget(runtime:build) 1.3s Cached
🟩 SyncNodeProject(visualizer) 636.7ms Passed
🟩 SyncNodeProject(report) 905.9ms Passed
🟩 SyncNodeProject(website) 251.2ms Passed
🟩 SyncWorkspace 519.3ms Passed
🟦 RunTarget(visualizer:lint) 1.2s Cached
🟦 RunTarget(website:typecheck) 1.2s Cached
🟦 RunTarget(website:test) 1.2s Cached
🟦 RunTarget(website:lint) 1.2s Cached
🟩 RunTarget(website:format) 10.6s Passed
🟦 RunTarget(visualizer:typecheck) 10.7s Cached
🟩 RunTarget(visualizer:format) 2s Passed
🟦 RunTarget(report:typecheck) 1.9s Cached
🟦 RunTarget(report:test) 1.2s Cached
🟦 RunTarget(report:lint) 1.2s Cached
And 9 more...
Expanded report
Action Time Status Info
🟩 RunTarget(report:format) 1.9s Passed
🟦 RunTarget(report:build) 2s Cached
🟦 RunTarget(visualizer:test) 1.2s Cached
🟦 RunTarget(visualizer:build) 1.4s Cached
🟦 RunTarget(runtime:typecheck) 1.4s Cached
🟦 RunTarget(runtime:test) 1.2s Cached
🟦 RunTarget(runtime:lint) 1.2s Cached
🟩 RunTarget(runtime:format) 1.7s Passed
🟦 RunTarget(website:build) 5.2s Cached
Environment

OS: Linux
Matrix:

os = ubuntu-latest
node-version = 18

Variables:

MOON_NODE_VERSION = 18.18.0
Touched files
.yarn/versions/22a0caa2.yml
Cargo.lock
crates/core/dep-graph/tests/dep_graph_test.rs
crates/core/dep-graph/tests/snapshots/dep_graph_test__run_target__moves_persistent_tasks_last.snap
nextgen/action-graph/Cargo.toml
nextgen/action-graph/src/action_graph.rs
nextgen/action-graph/src/action_graph_builder.rs
nextgen/action-graph/src/action_graph_error.rs
nextgen/action-graph/src/action_node.rs
nextgen/action-graph/src/lib.rs
nextgen/action-graph/tests/__fixtures__/dep-workspace/.moon/toolchain.yml
nextgen/action-graph/tests/__fixtures__/dep-workspace/in/moon.yml
nextgen/action-graph/tests/__fixtures__/dep-workspace/out/moon.yml
nextgen/action-graph/tests/__fixtures__/dep-workspace/package.json
nextgen/action-graph/tests/__fixtures__/projects/.moon/toolchain.yml
nextgen/action-graph/tests/__fixtures__/projects/bar/moon.yml
nextgen/action-graph/tests/__fixtures__/projects/baz/moon.yml
nextgen/action-graph/tests/__fixtures__/projects/foo/moon.yml
nextgen/action-graph/tests/__fixtures__/projects/package.json
nextgen/action-graph/tests/__fixtures__/projects/qux/moon.yml
nextgen/action-graph/tests/__fixtures__/tasks/base/moon.yml
nextgen/action-graph/tests/__fixtures__/tasks/client/moon.yml
nextgen/action-graph/tests/__fixtures__/tasks/common/moon.yml
nextgen/action-graph/tests/__fixtures__/tasks/deps-external/moon.yml
nextgen/action-graph/tests/__fixtures__/tasks/deps/moon.yml
nextgen/action-graph/tests/__fixtures__/tasks/server/moon.yml
nextgen/action-graph/tests/action_graph_test.rs
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__install_deps__graphs.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__install_deps__installs_in_project_when_not_in_depman_workspace.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task__graphs.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task__task_can_have_a_diff_platform_from_project.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_by_target__runs_all.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_by_target__runs_all_with_query.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_by_target__runs_by_project.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_by_target__runs_tag.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_by_target_locator__runs_by_file_path.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_by_target_locator__runs_by_target.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_dependencies__can_create_a_chain.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_dependencies__doesnt_include_dependents.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_dependencies__includes_dependents.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_dependencies__runs_deps_in_parallel.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_dependencies__runs_deps_in_serial.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__setup_tool__graphs.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__setup_tool__graphs_same_platform.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_project__graphs.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_project__graphs_multiple.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_project__graphs_single.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_project__graphs_single_with_dep.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_project__inherits_platform_tool.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_project__supports_platform_override.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_workspace__graphs.snap
nextgen/action-graph/tests/utils.rs
nextgen/config/tests/inherited_tasks_config_test.rs
nextgen/platform-runtime/src/lib.rs
nextgen/project-builder/src/project_builder.rs
nextgen/project-graph/Cargo.toml
nextgen/project-graph/src/project_graph.rs
nextgen/project-graph/src/project_graph_builder.rs
nextgen/project-graph/tests/project_graph_test.rs
nextgen/task/src/lib.rs
nextgen/test-utils/Cargo.toml
nextgen/test-utils/src/lib.rs
nextgen/test-utils/src/platform_manager.rs
nextgen/test-utils/src/project_graph.rs
packages/cli/CHANGELOG.md
packages/report/tests/action.test.ts
packages/report/tests/report.test.ts
packages/visualizer/src/helpers/render.ts
website/docs/commands/dep-graph.mdx
website/docs/concepts/project.mdx
website/docs/concepts/task.mdx
website/docs/config/project.mdx
website/docs/editors/vscode.mdx
website/docs/how-it-works/action-graph.mdx
website/docs/how-it-works/dep-graph.mdx
website/docs/how-it-works/project-graph.mdx
website/docs/run-task.mdx
website/docusaurus.config.js
website/sidebars.js
website/src/components/Docs/ActionGraph.tsx
website/src/components/Docs/DepGraph.tsx

@github-actions
Copy link

github-actions bot commented Oct 2, 2023

Run report for b3bd043a (ubuntu-latest, 20)

Total time: 2m 18s | Comparison time: 7m 37s | Estimated savings: 5m 19s (69.8% faster)

Action Time Status Info
🟩 SetupNodeTool(20.8.0) 17.9s Passed
🟩 SyncNodeProject(types) 734.4ms Passed
🟩 InstallNodeDeps(20.8.0) 1m 28s Passed
🟦 RunTarget(types:build) 1.4s Cached
🟩 SyncNodeProject(runtime) 675.1ms Passed
🟦 RunTarget(runtime:build) 1.5s Cached
🟩 SyncNodeProject(visualizer) 652.5ms Passed
🟩 SyncNodeProject(report) 1.2s Passed
🟩 SyncNodeProject(website) 363.5ms Passed
🟩 SyncWorkspace 521.4ms Passed
🟦 RunTarget(visualizer:lint) 1.3s Cached
🟦 RunTarget(website:typecheck) 1.6s Cached
🟦 RunTarget(website:test) 1.5s Cached
🟦 RunTarget(website:lint) 1.7s Cached
🟩 RunTarget(website:format) 9.6s Passed
🟦 RunTarget(visualizer:typecheck) 9.5s Cached
🟩 RunTarget(visualizer:format) 2s Passed
🟦 RunTarget(report:typecheck) 2.1s Cached
🟦 RunTarget(report:test) 1.7s Cached
🟦 RunTarget(report:lint) 1.6s Cached
And 9 more...
Expanded report
Action Time Status Info
🟩 RunTarget(report:format) 2.1s Passed
🟦 RunTarget(report:build) 2.3s Cached
🟦 RunTarget(visualizer:test) 1.7s Cached
🟦 RunTarget(visualizer:build) 1.8s Cached
🟦 RunTarget(runtime:typecheck) 1.8s Cached
🟦 RunTarget(runtime:test) 1.6s Cached
🟦 RunTarget(runtime:lint) 1.6s Cached
🟩 RunTarget(runtime:format) 1.9s Passed
🟦 RunTarget(website:build) 5.1s Cached
Environment

OS: Linux
Matrix:

os = ubuntu-latest
node-version = 20

Variables:

MOON_NODE_VERSION = 20.8.0
Touched files
.yarn/versions/22a0caa2.yml
Cargo.lock
crates/core/dep-graph/tests/dep_graph_test.rs
crates/core/dep-graph/tests/snapshots/dep_graph_test__run_target__moves_persistent_tasks_last.snap
nextgen/action-graph/Cargo.toml
nextgen/action-graph/src/action_graph.rs
nextgen/action-graph/src/action_graph_builder.rs
nextgen/action-graph/src/action_graph_error.rs
nextgen/action-graph/src/action_node.rs
nextgen/action-graph/src/lib.rs
nextgen/action-graph/tests/__fixtures__/dep-workspace/.moon/toolchain.yml
nextgen/action-graph/tests/__fixtures__/dep-workspace/in/moon.yml
nextgen/action-graph/tests/__fixtures__/dep-workspace/out/moon.yml
nextgen/action-graph/tests/__fixtures__/dep-workspace/package.json
nextgen/action-graph/tests/__fixtures__/projects/.moon/toolchain.yml
nextgen/action-graph/tests/__fixtures__/projects/bar/moon.yml
nextgen/action-graph/tests/__fixtures__/projects/baz/moon.yml
nextgen/action-graph/tests/__fixtures__/projects/foo/moon.yml
nextgen/action-graph/tests/__fixtures__/projects/package.json
nextgen/action-graph/tests/__fixtures__/projects/qux/moon.yml
nextgen/action-graph/tests/__fixtures__/tasks/base/moon.yml
nextgen/action-graph/tests/__fixtures__/tasks/client/moon.yml
nextgen/action-graph/tests/__fixtures__/tasks/common/moon.yml
nextgen/action-graph/tests/__fixtures__/tasks/deps-external/moon.yml
nextgen/action-graph/tests/__fixtures__/tasks/deps/moon.yml
nextgen/action-graph/tests/__fixtures__/tasks/server/moon.yml
nextgen/action-graph/tests/action_graph_test.rs
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__install_deps__graphs.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__install_deps__installs_in_project_when_not_in_depman_workspace.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task__graphs.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task__task_can_have_a_diff_platform_from_project.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_by_target__runs_all.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_by_target__runs_all_with_query.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_by_target__runs_by_project.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_by_target__runs_tag.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_by_target_locator__runs_by_file_path.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_by_target_locator__runs_by_target.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_dependencies__can_create_a_chain.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_dependencies__doesnt_include_dependents.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_dependencies__includes_dependents.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_dependencies__runs_deps_in_parallel.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_dependencies__runs_deps_in_serial.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__setup_tool__graphs.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__setup_tool__graphs_same_platform.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_project__graphs.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_project__graphs_multiple.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_project__graphs_single.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_project__graphs_single_with_dep.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_project__inherits_platform_tool.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_project__supports_platform_override.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_workspace__graphs.snap
nextgen/action-graph/tests/utils.rs
nextgen/config/tests/inherited_tasks_config_test.rs
nextgen/platform-runtime/src/lib.rs
nextgen/project-builder/src/project_builder.rs
nextgen/project-graph/Cargo.toml
nextgen/project-graph/src/project_graph.rs
nextgen/project-graph/src/project_graph_builder.rs
nextgen/project-graph/tests/project_graph_test.rs
nextgen/task/src/lib.rs
nextgen/test-utils/Cargo.toml
nextgen/test-utils/src/lib.rs
nextgen/test-utils/src/platform_manager.rs
nextgen/test-utils/src/project_graph.rs
packages/cli/CHANGELOG.md
packages/report/tests/action.test.ts
packages/report/tests/report.test.ts
packages/visualizer/src/helpers/render.ts
website/docs/commands/dep-graph.mdx
website/docs/concepts/project.mdx
website/docs/concepts/task.mdx
website/docs/config/project.mdx
website/docs/editors/vscode.mdx
website/docs/how-it-works/action-graph.mdx
website/docs/how-it-works/dep-graph.mdx
website/docs/how-it-works/project-graph.mdx
website/docs/run-task.mdx
website/docusaurus.config.js
website/sidebars.js
website/src/components/Docs/ActionGraph.tsx
website/src/components/Docs/DepGraph.tsx

@github-actions
Copy link

github-actions bot commented Oct 2, 2023

Run report for b3bd043a (windows-latest, 18)

Total time: 3m 4s | Comparison time: 8m 1s | Estimated savings: 4m 56s (61.7% faster)

Action Time Status Info
🟩 SetupNodeTool(18.18.0) 25.4s Passed
🟩 SyncNodeProject(types) 401ms Passed
🟩 InstallNodeDeps(18.18.0) 2m 7s Passed SLOW
🟦 RunTarget(types:build) 1.4s Cached
🟩 SyncNodeProject(runtime) 587.7ms Passed
🟦 RunTarget(runtime:build) 1.1s Cached
🟩 SyncNodeProject(visualizer) 405ms Passed
🟩 SyncNodeProject(report) 889.5ms Passed
🟩 SyncNodeProject(website) 191.5ms Passed
🟩 SyncWorkspace 394.3ms Passed
🟦 RunTarget(visualizer:lint) 921.1ms Cached
🟦 RunTarget(website:typecheck) 1.1s Cached
🟦 RunTarget(website:test) 1.1s Cached
🟦 RunTarget(website:lint) 1s Cached
🟩 RunTarget(website:format) 12s Passed
🟦 RunTarget(visualizer:typecheck) 12s Cached
🟩 RunTarget(visualizer:format) 2.1s Passed
🟦 RunTarget(report:typecheck) 2s Cached
🟦 RunTarget(report:test) 1s Cached
🟦 RunTarget(report:lint) 1s Cached
And 9 more...
Expanded report
Action Time Status Info
🟩 RunTarget(report:format) 2s Passed
🟦 RunTarget(report:build) 2s Cached
🟦 RunTarget(visualizer:test) 993.8ms Cached
🟦 RunTarget(visualizer:build) 1.2s Cached
🟦 RunTarget(runtime:typecheck) 1.4s Cached
🟦 RunTarget(runtime:test) 1.2s Cached
🟦 RunTarget(runtime:lint) 989.5ms Cached
🟩 RunTarget(runtime:format) 1.8s Passed
🟦 RunTarget(website:build) 6.3s Cached
Environment

OS: Windows
Matrix:

os = windows-latest
node-version = 18

Variables:

MOON_NODE_VERSION = 18.18.0
Touched files
.yarn/versions/22a0caa2.yml
Cargo.lock
crates/core/dep-graph/tests/dep_graph_test.rs
crates/core/dep-graph/tests/snapshots/dep_graph_test__run_target__moves_persistent_tasks_last.snap
nextgen/action-graph/Cargo.toml
nextgen/action-graph/src/action_graph.rs
nextgen/action-graph/src/action_graph_builder.rs
nextgen/action-graph/src/action_graph_error.rs
nextgen/action-graph/src/action_node.rs
nextgen/action-graph/src/lib.rs
nextgen/action-graph/tests/__fixtures__/dep-workspace/.moon/toolchain.yml
nextgen/action-graph/tests/__fixtures__/dep-workspace/in/moon.yml
nextgen/action-graph/tests/__fixtures__/dep-workspace/out/moon.yml
nextgen/action-graph/tests/__fixtures__/dep-workspace/package.json
nextgen/action-graph/tests/__fixtures__/projects/.moon/toolchain.yml
nextgen/action-graph/tests/__fixtures__/projects/bar/moon.yml
nextgen/action-graph/tests/__fixtures__/projects/baz/moon.yml
nextgen/action-graph/tests/__fixtures__/projects/foo/moon.yml
nextgen/action-graph/tests/__fixtures__/projects/package.json
nextgen/action-graph/tests/__fixtures__/projects/qux/moon.yml
nextgen/action-graph/tests/__fixtures__/tasks/base/moon.yml
nextgen/action-graph/tests/__fixtures__/tasks/client/moon.yml
nextgen/action-graph/tests/__fixtures__/tasks/common/moon.yml
nextgen/action-graph/tests/__fixtures__/tasks/deps-external/moon.yml
nextgen/action-graph/tests/__fixtures__/tasks/deps/moon.yml
nextgen/action-graph/tests/__fixtures__/tasks/server/moon.yml
nextgen/action-graph/tests/action_graph_test.rs
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__install_deps__graphs.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__install_deps__installs_in_project_when_not_in_depman_workspace.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task__graphs.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task__task_can_have_a_diff_platform_from_project.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_by_target__runs_all.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_by_target__runs_all_with_query.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_by_target__runs_by_project.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_by_target__runs_tag.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_by_target_locator__runs_by_file_path.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_by_target_locator__runs_by_target.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_dependencies__can_create_a_chain.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_dependencies__doesnt_include_dependents.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_dependencies__includes_dependents.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_dependencies__runs_deps_in_parallel.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_dependencies__runs_deps_in_serial.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__setup_tool__graphs.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__setup_tool__graphs_same_platform.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_project__graphs.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_project__graphs_multiple.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_project__graphs_single.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_project__graphs_single_with_dep.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_project__inherits_platform_tool.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_project__supports_platform_override.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_workspace__graphs.snap
nextgen/action-graph/tests/utils.rs
nextgen/config/tests/inherited_tasks_config_test.rs
nextgen/platform-runtime/src/lib.rs
nextgen/project-builder/src/project_builder.rs
nextgen/project-graph/Cargo.toml
nextgen/project-graph/src/project_graph.rs
nextgen/project-graph/src/project_graph_builder.rs
nextgen/project-graph/tests/project_graph_test.rs
nextgen/task/src/lib.rs
nextgen/test-utils/Cargo.toml
nextgen/test-utils/src/lib.rs
nextgen/test-utils/src/platform_manager.rs
nextgen/test-utils/src/project_graph.rs
packages/cli/CHANGELOG.md
packages/report/tests/action.test.ts
packages/report/tests/report.test.ts
packages/visualizer/src/helpers/render.ts
website/docs/commands/dep-graph.mdx
website/docs/concepts/project.mdx
website/docs/concepts/task.mdx
website/docs/config/project.mdx
website/docs/editors/vscode.mdx
website/docs/how-it-works/action-graph.mdx
website/docs/how-it-works/dep-graph.mdx
website/docs/how-it-works/project-graph.mdx
website/docs/run-task.mdx
website/docusaurus.config.js
website/sidebars.js
website/src/components/Docs/ActionGraph.tsx
website/src/components/Docs/DepGraph.tsx

@github-actions
Copy link

github-actions bot commented Oct 2, 2023

Run report for b3bd043a (windows-latest, 20)

Total time: 2m 29s | Comparison time: 7m 11s | Estimated savings: 4m 41s (65.4% faster)

Action Time Status Info
🟩 SetupNodeTool(20.8.0) 25.4s Passed
🟩 SyncNodeProject(types) 287.4ms Passed
🟩 InstallNodeDeps(20.8.0) 1m 35s Passed
🟦 RunTarget(types:build) 1.2s Cached
🟩 SyncNodeProject(runtime) 1.2s Passed
🟦 RunTarget(runtime:build) 1s Cached
🟩 SyncNodeProject(visualizer) 298.9ms Passed
🟩 SyncNodeProject(report) 858.5ms Passed
🟩 SyncNodeProject(website) 145.8ms Passed
🟩 SyncWorkspace 306.9ms Passed
🟦 RunTarget(visualizer:lint) 951.6ms Cached
🟦 RunTarget(website:typecheck) 1.4s Cached
🟦 RunTarget(website:test) 1.4s Cached
🟦 RunTarget(website:lint) 1.3s Cached
🟩 RunTarget(website:format) 8.8s Passed
🟦 RunTarget(visualizer:typecheck) 8.9s Cached
🟩 RunTarget(visualizer:format) 1.8s Passed
🟦 RunTarget(report:typecheck) 1.7s Cached
🟦 RunTarget(report:test) 1.3s Cached
🟦 RunTarget(report:lint) 1.3s Cached
And 9 more...
Expanded report
Action Time Status Info
🟩 RunTarget(report:format) 1.8s Passed
🟦 RunTarget(report:build) 1.8s Cached
🟦 RunTarget(visualizer:test) 1.4s Cached
🟦 RunTarget(visualizer:build) 1.7s Cached
🟦 RunTarget(runtime:typecheck) 1.6s Cached
🟦 RunTarget(runtime:test) 1.3s Cached
🟦 RunTarget(runtime:lint) 1.3s Cached
🟩 RunTarget(runtime:format) 1.6s Passed
🟦 RunTarget(website:build) 5.6s Cached
Environment

OS: Windows
Matrix:

os = windows-latest
node-version = 20

Variables:

MOON_NODE_VERSION = 20.8.0
Touched files
.yarn/versions/22a0caa2.yml
Cargo.lock
crates/core/dep-graph/tests/dep_graph_test.rs
crates/core/dep-graph/tests/snapshots/dep_graph_test__run_target__moves_persistent_tasks_last.snap
nextgen/action-graph/Cargo.toml
nextgen/action-graph/src/action_graph.rs
nextgen/action-graph/src/action_graph_builder.rs
nextgen/action-graph/src/action_graph_error.rs
nextgen/action-graph/src/action_node.rs
nextgen/action-graph/src/lib.rs
nextgen/action-graph/tests/__fixtures__/dep-workspace/.moon/toolchain.yml
nextgen/action-graph/tests/__fixtures__/dep-workspace/in/moon.yml
nextgen/action-graph/tests/__fixtures__/dep-workspace/out/moon.yml
nextgen/action-graph/tests/__fixtures__/dep-workspace/package.json
nextgen/action-graph/tests/__fixtures__/projects/.moon/toolchain.yml
nextgen/action-graph/tests/__fixtures__/projects/bar/moon.yml
nextgen/action-graph/tests/__fixtures__/projects/baz/moon.yml
nextgen/action-graph/tests/__fixtures__/projects/foo/moon.yml
nextgen/action-graph/tests/__fixtures__/projects/package.json
nextgen/action-graph/tests/__fixtures__/projects/qux/moon.yml
nextgen/action-graph/tests/__fixtures__/tasks/base/moon.yml
nextgen/action-graph/tests/__fixtures__/tasks/client/moon.yml
nextgen/action-graph/tests/__fixtures__/tasks/common/moon.yml
nextgen/action-graph/tests/__fixtures__/tasks/deps-external/moon.yml
nextgen/action-graph/tests/__fixtures__/tasks/deps/moon.yml
nextgen/action-graph/tests/__fixtures__/tasks/server/moon.yml
nextgen/action-graph/tests/action_graph_test.rs
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__install_deps__graphs.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__install_deps__installs_in_project_when_not_in_depman_workspace.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task__graphs.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task__task_can_have_a_diff_platform_from_project.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_by_target__runs_all.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_by_target__runs_all_with_query.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_by_target__runs_by_project.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_by_target__runs_tag.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_by_target_locator__runs_by_file_path.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_by_target_locator__runs_by_target.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_dependencies__can_create_a_chain.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_dependencies__doesnt_include_dependents.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_dependencies__includes_dependents.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_dependencies__runs_deps_in_parallel.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_dependencies__runs_deps_in_serial.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__setup_tool__graphs.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__setup_tool__graphs_same_platform.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_project__graphs.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_project__graphs_multiple.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_project__graphs_single.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_project__graphs_single_with_dep.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_project__inherits_platform_tool.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_project__supports_platform_override.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_workspace__graphs.snap
nextgen/action-graph/tests/utils.rs
nextgen/config/tests/inherited_tasks_config_test.rs
nextgen/platform-runtime/src/lib.rs
nextgen/project-builder/src/project_builder.rs
nextgen/project-graph/Cargo.toml
nextgen/project-graph/src/project_graph.rs
nextgen/project-graph/src/project_graph_builder.rs
nextgen/project-graph/tests/project_graph_test.rs
nextgen/task/src/lib.rs
nextgen/test-utils/Cargo.toml
nextgen/test-utils/src/lib.rs
nextgen/test-utils/src/platform_manager.rs
nextgen/test-utils/src/project_graph.rs
packages/cli/CHANGELOG.md
packages/report/tests/action.test.ts
packages/report/tests/report.test.ts
packages/visualizer/src/helpers/render.ts
website/docs/commands/dep-graph.mdx
website/docs/concepts/project.mdx
website/docs/concepts/task.mdx
website/docs/config/project.mdx
website/docs/editors/vscode.mdx
website/docs/how-it-works/action-graph.mdx
website/docs/how-it-works/dep-graph.mdx
website/docs/how-it-works/project-graph.mdx
website/docs/run-task.mdx
website/docusaurus.config.js
website/sidebars.js
website/src/components/Docs/ActionGraph.tsx
website/src/components/Docs/DepGraph.tsx

@github-actions
Copy link

github-actions bot commented Oct 2, 2023

Run report for b3bd043a (ubuntu-latest, 16)

Total time: 2m 14s | Comparison time: 7m 10s | Estimated savings: 4m 55s (68.7% faster)

Action Time Status Info
🟩 SetupNodeTool(16.20.2) 16.5s Passed
🟩 SyncNodeProject(types) 629.6ms Passed
🟩 InstallNodeDeps(16.20.2) 1m 27s Passed
🟦 RunTarget(types:build) 1.1s Cached
🟩 SyncNodeProject(runtime) 501ms Passed
🟦 RunTarget(runtime:build) 1.1s Cached
🟩 SyncNodeProject(visualizer) 485.6ms Passed
🟩 SyncNodeProject(report) 649.3ms Passed
🟩 SyncNodeProject(website) 255.6ms Passed
🟩 SyncWorkspace 480.3ms Passed
🟦 RunTarget(visualizer:lint) 1.1s Cached
🟦 RunTarget(website:typecheck) 1.4s Cached
🟦 RunTarget(website:test) 1.5s Cached
🟦 RunTarget(website:lint) 1.3s Cached
🟩 RunTarget(website:format) 10.2s Passed
🟦 RunTarget(visualizer:typecheck) 10.3s Cached
🟩 RunTarget(visualizer:format) 1.9s Passed
🟦 RunTarget(report:typecheck) 1.9s Cached
🟦 RunTarget(report:test) 1.3s Cached
🟦 RunTarget(report:lint) 1.2s Cached
And 9 more...
Expanded report
Action Time Status Info
🟩 RunTarget(report:format) 3s Passed
🟦 RunTarget(report:build) 3s Cached
🟦 RunTarget(visualizer:test) 1.3s Cached
🟦 RunTarget(visualizer:build) 1.4s Cached
🟦 RunTarget(runtime:typecheck) 1.4s Cached
🟦 RunTarget(runtime:test) 1.2s Cached
🟦 RunTarget(runtime:lint) 1.3s Cached
🟩 RunTarget(runtime:format) 1.7s Passed
🟦 RunTarget(website:build) 4.8s Cached
Environment

OS: Linux
Matrix:

os = ubuntu-latest
node-version = 16

Variables:

MOON_NODE_VERSION = 16.20.2
Touched files
.yarn/versions/22a0caa2.yml
Cargo.lock
crates/core/dep-graph/tests/dep_graph_test.rs
crates/core/dep-graph/tests/snapshots/dep_graph_test__run_target__moves_persistent_tasks_last.snap
nextgen/action-graph/Cargo.toml
nextgen/action-graph/src/action_graph.rs
nextgen/action-graph/src/action_graph_builder.rs
nextgen/action-graph/src/action_graph_error.rs
nextgen/action-graph/src/action_node.rs
nextgen/action-graph/src/lib.rs
nextgen/action-graph/tests/__fixtures__/dep-workspace/.moon/toolchain.yml
nextgen/action-graph/tests/__fixtures__/dep-workspace/in/moon.yml
nextgen/action-graph/tests/__fixtures__/dep-workspace/out/moon.yml
nextgen/action-graph/tests/__fixtures__/dep-workspace/package.json
nextgen/action-graph/tests/__fixtures__/projects/.moon/toolchain.yml
nextgen/action-graph/tests/__fixtures__/projects/bar/moon.yml
nextgen/action-graph/tests/__fixtures__/projects/baz/moon.yml
nextgen/action-graph/tests/__fixtures__/projects/foo/moon.yml
nextgen/action-graph/tests/__fixtures__/projects/package.json
nextgen/action-graph/tests/__fixtures__/projects/qux/moon.yml
nextgen/action-graph/tests/__fixtures__/tasks/base/moon.yml
nextgen/action-graph/tests/__fixtures__/tasks/client/moon.yml
nextgen/action-graph/tests/__fixtures__/tasks/common/moon.yml
nextgen/action-graph/tests/__fixtures__/tasks/deps-external/moon.yml
nextgen/action-graph/tests/__fixtures__/tasks/deps/moon.yml
nextgen/action-graph/tests/__fixtures__/tasks/server/moon.yml
nextgen/action-graph/tests/action_graph_test.rs
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__install_deps__graphs.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__install_deps__installs_in_project_when_not_in_depman_workspace.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task__graphs.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task__task_can_have_a_diff_platform_from_project.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_by_target__runs_all.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_by_target__runs_all_with_query.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_by_target__runs_by_project.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_by_target__runs_tag.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_by_target_locator__runs_by_file_path.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_by_target_locator__runs_by_target.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_dependencies__can_create_a_chain.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_dependencies__doesnt_include_dependents.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_dependencies__includes_dependents.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_dependencies__runs_deps_in_parallel.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_dependencies__runs_deps_in_serial.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__setup_tool__graphs.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__setup_tool__graphs_same_platform.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_project__graphs.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_project__graphs_multiple.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_project__graphs_single.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_project__graphs_single_with_dep.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_project__inherits_platform_tool.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_project__supports_platform_override.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_workspace__graphs.snap
nextgen/action-graph/tests/utils.rs
nextgen/config/tests/inherited_tasks_config_test.rs
nextgen/platform-runtime/src/lib.rs
nextgen/project-builder/src/project_builder.rs
nextgen/project-graph/Cargo.toml
nextgen/project-graph/src/project_graph.rs
nextgen/project-graph/src/project_graph_builder.rs
nextgen/project-graph/tests/project_graph_test.rs
nextgen/task/src/lib.rs
nextgen/test-utils/Cargo.toml
nextgen/test-utils/src/lib.rs
nextgen/test-utils/src/platform_manager.rs
nextgen/test-utils/src/project_graph.rs
packages/cli/CHANGELOG.md
packages/report/tests/action.test.ts
packages/report/tests/report.test.ts
packages/visualizer/src/helpers/render.ts
website/docs/commands/dep-graph.mdx
website/docs/concepts/project.mdx
website/docs/concepts/task.mdx
website/docs/config/project.mdx
website/docs/editors/vscode.mdx
website/docs/how-it-works/action-graph.mdx
website/docs/how-it-works/dep-graph.mdx
website/docs/how-it-works/project-graph.mdx
website/docs/run-task.mdx
website/docusaurus.config.js
website/sidebars.js
website/src/components/Docs/ActionGraph.tsx
website/src/components/Docs/DepGraph.tsx

@github-actions
Copy link

github-actions bot commented Oct 2, 2023

Run report for b3bd043a (windows-latest, 16)

Total time: 2m 36s | Comparison time: 7m 55s | Estimated savings: 5m 19s (67.1% faster)

Action Time Status Info
🟩 SetupNodeTool(16.20.2) 21.9s Passed
🟩 SyncNodeProject(types) 453ms Passed
🟩 InstallNodeDeps(16.20.2) 1m 42s Passed
🟦 RunTarget(types:build) 1.4s Cached
🟩 SyncNodeProject(runtime) 1.4s Passed
🟦 RunTarget(runtime:build) 1.3s Cached
🟩 SyncNodeProject(visualizer) 536ms Passed
🟩 SyncNodeProject(report) 995.4ms Passed
🟩 SyncNodeProject(website) 233.3ms Passed
🟩 SyncWorkspace 459.1ms Passed
🟦 RunTarget(visualizer:lint) 1.2s Cached
🟦 RunTarget(website:typecheck) 1.4s Cached
🟦 RunTarget(website:test) 1.4s Cached
🟦 RunTarget(website:lint) 1.4s Cached
🟩 RunTarget(website:format) 9.7s Passed
🟦 RunTarget(visualizer:typecheck) 9.8s Cached
🟩 RunTarget(visualizer:format) 1.9s Passed
🟦 RunTarget(report:typecheck) 1.9s Cached
🟦 RunTarget(report:test) 1.4s Cached
🟦 RunTarget(report:lint) 1.4s Cached
And 9 more...
Expanded report
Action Time Status Info
🟩 RunTarget(report:format) 2.1s Passed
🟦 RunTarget(report:build) 2s Cached
🟦 RunTarget(visualizer:test) 1.6s Cached
🟦 RunTarget(visualizer:build) 1.9s Cached
🟦 RunTarget(runtime:typecheck) 1.5s Cached
🟦 RunTarget(runtime:test) 2.3s Cached
🟦 RunTarget(runtime:lint) 2.4s Cached
🟩 RunTarget(runtime:format) 1.7s Passed
🟦 RunTarget(website:build) 5.5s Cached
Environment

OS: Windows
Matrix:

os = windows-latest
node-version = 16

Variables:

MOON_NODE_VERSION = 16.20.2
Touched files
.yarn/versions/22a0caa2.yml
Cargo.lock
crates/core/dep-graph/tests/dep_graph_test.rs
crates/core/dep-graph/tests/snapshots/dep_graph_test__run_target__moves_persistent_tasks_last.snap
nextgen/action-graph/Cargo.toml
nextgen/action-graph/src/action_graph.rs
nextgen/action-graph/src/action_graph_builder.rs
nextgen/action-graph/src/action_graph_error.rs
nextgen/action-graph/src/action_node.rs
nextgen/action-graph/src/lib.rs
nextgen/action-graph/tests/__fixtures__/dep-workspace/.moon/toolchain.yml
nextgen/action-graph/tests/__fixtures__/dep-workspace/in/moon.yml
nextgen/action-graph/tests/__fixtures__/dep-workspace/out/moon.yml
nextgen/action-graph/tests/__fixtures__/dep-workspace/package.json
nextgen/action-graph/tests/__fixtures__/projects/.moon/toolchain.yml
nextgen/action-graph/tests/__fixtures__/projects/bar/moon.yml
nextgen/action-graph/tests/__fixtures__/projects/baz/moon.yml
nextgen/action-graph/tests/__fixtures__/projects/foo/moon.yml
nextgen/action-graph/tests/__fixtures__/projects/package.json
nextgen/action-graph/tests/__fixtures__/projects/qux/moon.yml
nextgen/action-graph/tests/__fixtures__/tasks/base/moon.yml
nextgen/action-graph/tests/__fixtures__/tasks/client/moon.yml
nextgen/action-graph/tests/__fixtures__/tasks/common/moon.yml
nextgen/action-graph/tests/__fixtures__/tasks/deps-external/moon.yml
nextgen/action-graph/tests/__fixtures__/tasks/deps/moon.yml
nextgen/action-graph/tests/__fixtures__/tasks/server/moon.yml
nextgen/action-graph/tests/action_graph_test.rs
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__install_deps__graphs.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__install_deps__installs_in_project_when_not_in_depman_workspace.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task__graphs.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task__task_can_have_a_diff_platform_from_project.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_by_target__runs_all.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_by_target__runs_all_with_query.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_by_target__runs_by_project.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_by_target__runs_tag.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_by_target_locator__runs_by_file_path.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_by_target_locator__runs_by_target.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_dependencies__can_create_a_chain.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_dependencies__doesnt_include_dependents.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_dependencies__includes_dependents.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_dependencies__runs_deps_in_parallel.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__run_task_dependencies__runs_deps_in_serial.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__setup_tool__graphs.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__setup_tool__graphs_same_platform.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_project__graphs.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_project__graphs_multiple.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_project__graphs_single.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_project__graphs_single_with_dep.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_project__inherits_platform_tool.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_project__supports_platform_override.snap
nextgen/action-graph/tests/snapshots/action_graph_test__action_graph__sync_workspace__graphs.snap
nextgen/action-graph/tests/utils.rs
nextgen/config/tests/inherited_tasks_config_test.rs
nextgen/platform-runtime/src/lib.rs
nextgen/project-builder/src/project_builder.rs
nextgen/project-graph/Cargo.toml
nextgen/project-graph/src/project_graph.rs
nextgen/project-graph/src/project_graph_builder.rs
nextgen/project-graph/tests/project_graph_test.rs
nextgen/task/src/lib.rs
nextgen/test-utils/Cargo.toml
nextgen/test-utils/src/lib.rs
nextgen/test-utils/src/platform_manager.rs
nextgen/test-utils/src/project_graph.rs
packages/cli/CHANGELOG.md
packages/report/tests/action.test.ts
packages/report/tests/report.test.ts
packages/visualizer/src/helpers/render.ts
website/docs/commands/dep-graph.mdx
website/docs/concepts/project.mdx
website/docs/concepts/task.mdx
website/docs/config/project.mdx
website/docs/editors/vscode.mdx
website/docs/how-it-works/action-graph.mdx
website/docs/how-it-works/dep-graph.mdx
website/docs/how-it-works/project-graph.mdx
website/docs/run-task.mdx
website/docusaurus.config.js
website/sidebars.js
website/src/components/Docs/ActionGraph.tsx
website/src/components/Docs/DepGraph.tsx

@milesj milesj force-pushed the 1.15-action-graph branch from 5c82736 to e579e30 Compare October 6, 2023 22:47
@milesj milesj merged commit efccf6f into develop-1.15 Oct 6, 2023
25 checks passed
@milesj milesj deleted the 1.15-action-graph branch October 6, 2023 23:58
milesj added a commit that referenced this pull request Oct 9, 2023
* Start on new graph.

* More graph work.

* Add caching to lookups.

* Add node labels.

* Add graph.

* Start on topo and tests.

* Add basic tests.

* Add tests.

* Add run task.

* Use digraph.

* Update docs.

* Add back link.

* Add cycle stuff.

* Add test utils crate.

* Start on new test utils crate.

* Add target tests.

* Test deps.

* Rework peer dep.

* Add dependents.

* Polish.

* Bump visualizer.

* Fix test.
milesj added a commit that referenced this pull request Oct 9, 2023
* Start on new graph.

* More graph work.

* Add caching to lookups.

* Add node labels.

* Add graph.

* Start on topo and tests.

* Add basic tests.

* Add tests.

* Add run task.

* Use digraph.

* Update docs.

* Add back link.

* Add cycle stuff.

* Add test utils crate.

* Start on new test utils crate.

* Add target tests.

* Test deps.

* Rework peer dep.

* Add dependents.

* Polish.

* Bump visualizer.

* Fix test.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

1 participant