chore(deps-dev): bump eslint from 9.39.4 to 10.8.0 #67
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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@v7 | |
| - 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@v7 | |
| - 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' |