Preserve VLESS WebSocket variants during subscription refresh
This commit is contained in:
@@ -97,7 +97,16 @@ jobs:
|
||||
-v "$PWD:/work" \
|
||||
-w /work \
|
||||
"${{ env.NODE_BUILD_IMAGE }}" \
|
||||
sh -lc 'npm ci --no-audit --no-fund && npm run typecheck && npm run check:boundaries && npm test && npm run build:production'
|
||||
sh -lc '
|
||||
npm ci --no-audit --no-fund
|
||||
npm_status=$?
|
||||
if [ "$npm_status" -ne 0 ] || [ ! -x node_modules/.bin/tsc ]; then
|
||||
echo "npm ci failed to install the validation toolchain." >&2
|
||||
tail -n 200 /root/.npm/_logs/*-debug-0.log >&2 || true
|
||||
exit 1
|
||||
fi
|
||||
npm run typecheck && npm run check:boundaries && npm test && npm run build:production
|
||||
'
|
||||
fi
|
||||
if [ "$RESTART_SCOPE" = "none" ]; then
|
||||
echo "Image build and push skipped: no Gateway runtime impact."
|
||||
|
||||
Reference in New Issue
Block a user