feat: add Base USDC and Agent Wallet payments #51
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: cli-ci | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| tags: ["v*", "test-v*"] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20.11" | |
| cache: npm | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Test | |
| run: npm test | |
| - name: Audit production dependencies | |
| run: npm audit --omit=dev --audit-level=high | |
| - name: Verify packed CLI | |
| run: npm run test:package |