TASK: Replace integration lane with post-build backend runtime black-box tests #72

Merged
darkhelm merged 23 commits from feature/issue-61-runtime-blackbox-integration into main 2026-07-05 22:49:09 -04:00
Showing only changes of commit ad919e6c11 - Show all commits

View File

@@ -322,7 +322,11 @@ jobs:
export NODE_OPTIONS="--max-old-space-size=512"
export YARN_NETWORK_CONCURRENCY=1
cd frontend
yarn install --immutable --mode=skip-build
if ! yarn install --immutable --mode=skip-build; then
echo "Yarn install failed; retrying with npm fallback for constrained runner memory"
rm -f package-lock.json
npm install --ignore-scripts --no-audit --no-fund --prefer-offline
fi
- name: Run frontend pre-commit source checks
env: