@link-assistant/hive-mind 0.46.0 → 0.46.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @link-assistant/hive-mind
|
|
2
2
|
|
|
3
|
+
## 0.46.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 3707189: Implement fail-fast CI strategy for release.yml workflow
|
|
8
|
+
|
|
9
|
+
- Added dependency ordering so long-running checks wait for all fast checks to pass
|
|
10
|
+
- Fast checks (test-compilation, lint, check-file-line-limits) run first (~7-21s each)
|
|
11
|
+
- Long-running checks (test-suites, test-execution, memory-check-linux, docker-pr-check) only run after fast checks pass
|
|
12
|
+
- Added smart conditionals with `!contains(needs.*.result, 'failure')` to skip long checks when fast checks fail
|
|
13
|
+
- Added section markers to clearly document FAST vs LONG-RUNNING checks in the workflow
|
|
14
|
+
|
|
15
|
+
Benefits:
|
|
16
|
+
|
|
17
|
+
- Time savings: If fast checks fail, ~4+ minutes of long-running tests are skipped
|
|
18
|
+
- Faster feedback: Developers get quick feedback on common issues
|
|
19
|
+
- Resource efficiency: Reduces unnecessary GitHub Actions minutes consumption
|
|
20
|
+
|
|
3
21
|
## 0.46.0
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|