CI / macos-app (set -euo pipefail
for attempt in 1 2 3; do
if swift build --package-path apps/macos --configuration release; then
exit 0
fi
echo "swift build failed (attempt $attempt/3). Retrying…"
sleep $((attempt * 20))
done
exit 1
, build) (push) Waiting to run
CI / macos-app (set -euo pipefail
for attempt in 1 2 3; do
if swift test --package-path apps/macos --parallel --enable-code-coverage --show-codecov-path; then
exit 0
fi
echo "swift test failed (attempt $attempt/3). Retrying…"
sleep $((attempt *… (push) Waiting to run
- Implement QQ Bot API client with token caching
- Add WebSocket monitor for event handling
- Support C2C (single chat) and group messages
- Include pairing mechanism for DM authorization
Also fix memory-core peerDependencies to use workspace:*
- Update @typescript/native-preview from 7.0.0-dev.20260125.1 to 7.0.0-dev.20260124.1
(20260125.1 is not yet published to npm)
- Update memory-core peerDependency to >=2026.1.24 to match latest published version
- Fixes CI lockfile validation failures
This resolves the pnpm frozen-lockfile errors in GitHub Actions.