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
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
version: 10.22.0
- uses: ./.github/setup

- name: Build packages (excluding docs)
- name: Build packages
Copy link

Copilot AI Feb 16, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The step name "Build packages" is inconsistent with the naming pattern used for other filtered steps in this workflow. The test step (line 72) uses "Test packages (excluding docs)" and the typecheck step (line 86) uses "Typecheck packages (excluding docs)". For consistency, this should either be "Build packages (excluding docs)" to match the other steps, or all step names should be simplified to remove the "(excluding docs)" suffix.

Suggested change
- name: Build packages
- name: Build packages (excluding docs)

Copilot uses AI. Check for mistakes.
run: pnpm turbo build --filter=!docs

lint:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- uses: ./.github/setup

- name: Build
run: pnpm build
run: pnpm turbo build --filter=!docs

- name: Create Release
id: changesets
Expand Down