From d1cda14822f49f56bc5397803a5e09feba79252c Mon Sep 17 00:00:00 2001 From: Juniper Alanna <201364921+juniper-shopify@users.noreply.github.com> Date: Fri, 8 May 2026 09:17:23 -0400 Subject: [PATCH] Add workflow to validate and update internal architecture documentation --- .../check_architecture_documentation.rb | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 internal/workflows/architecture/check_architecture_documentation.rb diff --git a/internal/workflows/architecture/check_architecture_documentation.rb b/internal/workflows/architecture/check_architecture_documentation.rb new file mode 100644 index 00000000..3c7d73af --- /dev/null +++ b/internal/workflows/architecture/check_architecture_documentation.rb @@ -0,0 +1,16 @@ +# typed: true +# frozen_string_literal: true + +#: self as Roast::Workflow + +config do + cmd do + disdlay! + end +end + +execute do + cmd(:files) do + ["ls", "internal/documentation/architecture"] + end +end