feat: Enhance project memory and skills documentation; add memory-sync skill for knowledge consolidation
All checks were successful
CI — Test & Build / Test & Build (push) Successful in 1m15s
All checks were successful
CI — Test & Build / Test & Build (push) Successful in 1m15s
This commit is contained in:
@@ -15,6 +15,7 @@ jobs:
|
||||
deploy:
|
||||
name: Build & Deploy to Chrome Web Store
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 20
|
||||
container:
|
||||
image: node:22-bookworm
|
||||
|
||||
@@ -30,6 +31,13 @@ jobs:
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
|
||||
# Same gates as CI — a release must never check less than a push.
|
||||
- name: Prepare WXT types
|
||||
run: npx wxt prepare
|
||||
|
||||
- name: Type check
|
||||
run: npm run typecheck
|
||||
|
||||
- name: Run tests
|
||||
run: npm test -- --run
|
||||
|
||||
@@ -88,8 +96,8 @@ jobs:
|
||||
-H "Authorization: Bearer ${{ env.CWS_ACCESS_TOKEN }}" \
|
||||
-H "x-goog-api-version: 2" \
|
||||
-H "Content-Length: 0")
|
||||
HTTP_CODE=$(echo "$PUBLISH_RESPONSE" | tail -1)
|
||||
BODY=$(echo "$PUBLISH_RESPONSE" | head -1)
|
||||
HTTP_CODE=$(echo "$PUBLISH_RESPONSE" | tail -n 1)
|
||||
BODY=$(echo "$PUBLISH_RESPONSE" | sed '$d')
|
||||
echo "Publish HTTP: $HTTP_CODE"
|
||||
echo "Publish Response: $BODY"
|
||||
STATUS=$(echo "$BODY" | grep -o '"status":\["[^"]*"\]' | head -1)
|
||||
|
||||
Reference in New Issue
Block a user