@xn-intenton-z2a/agentic-lib 7.1.90 → 7.1.92
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.
|
@@ -762,10 +762,6 @@ jobs:
|
|
|
762
762
|
- name: Install project dependencies
|
|
763
763
|
run: npm ci
|
|
764
764
|
|
|
765
|
-
- name: Install Playwright (for behaviour tests)
|
|
766
|
-
if: hashFiles('playwright.config.js') != '' || hashFiles('playwright.config.ts') != ''
|
|
767
|
-
run: npx playwright install --with-deps chromium
|
|
768
|
-
|
|
769
765
|
- name: Self-init (agentic-lib dev only)
|
|
770
766
|
if: hashFiles('scripts/self-init.sh') != '' && hashFiles('.github/agentic-lib/actions/agentic-step/package.json') == ''
|
|
771
767
|
run: bash scripts/self-init.sh
|
|
@@ -870,14 +866,6 @@ jobs:
|
|
|
870
866
|
echo "WARNING: Unit tests failed (exit $EXIT_CODE) — skipping commit and PR"
|
|
871
867
|
exit 0
|
|
872
868
|
fi
|
|
873
|
-
# Run behaviour tests if available
|
|
874
|
-
if npm run --if-present test:behaviour; then
|
|
875
|
-
echo "Behaviour tests passed"
|
|
876
|
-
else
|
|
877
|
-
echo "tests-passed=false" >> $GITHUB_OUTPUT
|
|
878
|
-
echo "WARNING: Behaviour tests failed — skipping commit and PR"
|
|
879
|
-
exit 0
|
|
880
|
-
fi
|
|
881
869
|
echo "tests-passed=true" >> $GITHUB_OUTPUT
|
|
882
870
|
echo "All tests passed"
|
|
883
871
|
|
package/package.json
CHANGED