yadflow 3.3.0 → 3.3.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
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
## [3.3.1](https://github.com/abdelrahmannasr/yadflow/compare/v3.3.0...v3.3.1) (2026-07-01)
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
###
|
|
4
|
+
### Bug Fixes
|
|
5
5
|
|
|
6
|
-
*
|
|
6
|
+
* restore npm ci in github checks template ([c3079c2](https://github.com/abdelrahmannasr/yadflow/commit/c3079c246692188b5256550a74c6fa14d214c7a7)), closes [#92](https://github.com/abdelrahmannasr/yadflow/issues/92)
|
|
7
7
|
|
|
8
8
|
# [2.2.0](https://github.com/abdelrahmannasr/yadflow/compare/v2.1.0...v2.2.0) (2026-06-14)
|
|
9
9
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "yadflow",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.1",
|
|
4
4
|
"description": "Yadflow — the gated, team, multi-repo SDLC: author → review → build with a PR-driven review gate and a zero-dependency `yad` CLI (setup, gate, commit, open-pr, ship, repo, thread, reconcile). A BMAD module + 34 yad-* skills.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "AbdelRahman Nasr",
|
|
@@ -31,7 +31,8 @@ jobs:
|
|
|
31
31
|
- uses: actions/checkout@v4
|
|
32
32
|
with: { fetch-depth: 0 }
|
|
33
33
|
- uses: actions/setup-node@v4
|
|
34
|
-
with: { node-version: "20" }
|
|
34
|
+
with: { node-version: "20", cache: "npm" }
|
|
35
|
+
- run: npm ci # install deps so the real lint/build/test toolchain can run (mirrors the GitLab template)
|
|
35
36
|
- run: bash checks/build-test-lint.sh
|
|
36
37
|
|
|
37
38
|
# Phase 6 — feature-thread gates. lineage-check: the change links a real threaded epic. epic-open:
|