Skip to content

Commit 967b5a4

Browse files
fix(ci): update package-test workflow to use docs-* recipes
Update recipe calls to match renamed justfile recipes: - test-coverage → docs-test-coverage - build → docs-build - test-e2e → docs-test-e2e This maintains consistency with the multi-package monorepo pattern where all docs-specific recipes have the docs- prefix.
1 parent 2368056 commit 967b5a4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/package-test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,13 +73,13 @@ jobs:
7373
run: nix develop -c just install
7474

7575
- name: Run unit tests with coverage
76-
run: nix develop -c just test-coverage
76+
run: nix develop -c just docs-test-coverage
7777

7878
- name: Build for E2E tests
79-
run: nix develop -c just build
79+
run: nix develop -c just docs-build
8080

8181
- name: Run E2E tests
82-
run: nix develop -c just test-e2e
82+
run: nix develop -c just docs-test-e2e
8383

8484
- name: Upload build artifacts
8585
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)