Skip to content
Merged
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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- uses: emacs-eask/setup-eask@master
with:
version: 'snapshot'
- run: eask install-deps
- run: eask install-deps || true
Copy link

Copilot AI Feb 19, 2026

Choose a reason for hiding this comment

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

Using || true will hide all eask install-deps failures (e.g., network issues, registry outages, or a newly added dependency that fails to resolve), which reduces CI’s ability to catch real problems. Consider only allowing the specific “no runtime dependencies” exit code (e.g., eask install-deps || [ $? -eq 2 ]), so other non-zero exit codes still fail the job.

Suggested change
- run: eask install-deps || true
- run: eask install-deps || [ $? -eq 2 ]

Copilot uses AI. Check for mistakes.
- run: eask compile
- run: eask lint package
continue-on-error: true
Expand Down