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
5 changes: 5 additions & 0 deletions .changeset/build-provider-before-doctor.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@ankhorage/devtools': patch
---

Build repository providers before running Ankh Doctor validation in the canonical CI workflow so fresh CI checkouts can import their local provider modules.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,6 @@ jobs:
- name: Install dependencies
run: bun install --frozen-lockfile

- name: Validate Ankhorage repository
run: bunx @ankhorage/ankh doctor validate .

- name: Run build
run: |
if node -e "const p=require('./package.json'); process.exit(p.scripts?.build ? 0 : 1)"; then
Expand All @@ -38,6 +35,9 @@ jobs:
echo "No build script found; skipping."
fi

- name: Validate Ankhorage repository
run: bunx @ankhorage/ankh doctor validate .

- name: Run lint
run: |
if node -e "const p=require('./package.json'); process.exit(p.scripts?.lint ? 0 : 1)"; then
Expand Down
6 changes: 3 additions & 3 deletions src/tools/workflows/files/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,6 @@ jobs:
- name: Install dependencies
run: bun install --frozen-lockfile

- name: Validate Ankhorage repository
run: bunx @ankhorage/ankh doctor validate .

- name: Run build
run: |
if node -e "const p=require('./package.json'); process.exit(p.scripts?.build ? 0 : 1)"; then
Expand All @@ -38,6 +35,9 @@ jobs:
echo "No build script found; skipping."
fi

- name: Validate Ankhorage repository
run: bunx @ankhorage/ankh doctor validate .

- name: Run lint
run: |
if node -e "const p=require('./package.json'); process.exit(p.scripts?.lint ? 0 : 1)"; then
Expand Down
Loading