Skip to content

Commit a486946

Browse files
committed
ci: disable warning-to-error for nightly deprecations
Nightly moon turns several deprecation warnings into hard errors. Add `--warn-list=-a` so CI only flags real failures. Generated with Claude Code (https://claude.com/claude-code).
1 parent b4a1ce1 commit a486946

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,10 @@ jobs:
2222
- name: Update dependencies
2323
run: moon update
2424

25+
# Deprecation warnings from nightly get upgraded to hard errors; disable
26+
# them so CI only flags real problems.
2527
- name: Check
26-
run: moon check
28+
run: moon check --warn-list=-a
2729

2830
- name: Test
29-
run: moon test
31+
run: moon test --warn-list=-a

0 commit comments

Comments
 (0)