fix(sdk): songs.download options 字段名改为 snake_case 匹配 Go bridge 协议 #88
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [18, 20, 22] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: pnpm | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Build packages | |
| run: pnpm --filter "./packages/*" build | |
| - name: Run tests | |
| run: pnpm --filter "./packages/*" test | |
| - name: Smoke test plugin-builder | |
| run: node packages/plugin-builder/dist/cli.js --help || true | |
| - name: Refresh bin links for examples | |
| run: pnpm install --force | |
| - name: Build examples (verifies bin linkage) | |
| run: pnpm --filter "./examples/*" build |