Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ jobs:
runs-on: ubuntu-latest

env:
ANDROID_NDK_VERSION: 27.1.12297006
TURBO_CACHE_DIR: .turbo/android

steps:
Expand Down Expand Up @@ -93,6 +94,16 @@ jobs:
if: env.turbo_cache_hit != '1'
run: |
/bin/bash -c "yes | $ANDROID_HOME/cmdline-tools/latest/bin/sdkmanager --licenses > /dev/null"
for attempt in 1 2 3; do
if "$ANDROID_HOME/cmdline-tools/latest/bin/sdkmanager" "ndk;$ANDROID_NDK_VERSION"; then
exit 0
fi

rm -rf "$ANDROID_HOME/ndk/$ANDROID_NDK_VERSION" "$ANDROID_HOME/.temp"
sleep 10
done

exit 1


- name: Cache Gradle
Expand Down Expand Up @@ -150,6 +161,12 @@ jobs:
with:
xcode-version: ${{ env.XCODE_VERSION }}

- name: Setup Ruby
if: env.turbo_cache_hit != '1'
uses: ruby/setup-ruby@9eb537ca036ebaed86729dcb9309076e4c5c3b74 # v1
with:
ruby-version: '3.4.9'

- name: Install cocoapods
if: env.turbo_cache_hit != '1'
run: |
Expand Down
34 changes: 0 additions & 34 deletions .github/workflows/claude-code-review.yml

This file was deleted.

66 changes: 66 additions & 0 deletions .github/workflows/claude-review.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
name: Claude Review

on:
pull_request:
types: [opened, ready_for_review]
issue_comment:
types: [created]
pull_request_review_comment:
types: [created]

jobs:
initial-review:
if: >-
${{
github.event_name == 'pull_request' &&
!github.event.pull_request.draft &&
github.event.pull_request.user.login != 'dependabot[bot]'
}}
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
issues: write
id-token: write
steps:
- name: Check out repository
uses: actions/checkout@v6

- name: Run Claude Code Review
uses: anthropics/claude-code-action@beta
with:
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY_GITHUB_ACTIONS }}
github_token: ${{ github.token }}
model: 'claude-opus-4-8'
direct_prompt: |
Review this pull request. Focus on:
- Correctness of the TypeScript public API and exported types
- Native bridge consistency across src/, android/, and ios/
- Auth, session, wallet selection, signing, and transaction security
- No backwards compatibility shims unless explicitly approved
- API.md, README.md, and PUBLISHING.md updates for public API or release changes
- Expo example dependency policy: update only after the npm version is published
- Test coverage and verification for changed behavior
Be concise. Flag blockers clearly; call out nits as nits.

requested-review:
if: >-
(github.event_name == 'pull_request_review_comment' || github.event.issue.pull_request != null) &&
contains(github.event.comment.body, '@claude review')
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
issues: write
id-token: write
steps:
- name: Check out repository
uses: actions/checkout@v6

- name: Run Claude Code Review
uses: anthropics/claude-code-action@beta
with:
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY_GITHUB_ACTIONS }}
github_token: ${{ github.token }}
model: 'claude-opus-4-8'
trigger_phrase: '@claude review'
37 changes: 0 additions & 37 deletions .github/workflows/claude.yml

This file was deleted.

1 change: 1 addition & 0 deletions .ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.4.9
Loading
Loading