feat(artifacts): add versioned manifest and binding consistency check #4
Workflow file for this run
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: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10.13.1 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: pnpm | |
| - name: Install Node dependencies | |
| run: pnpm install --frozen-lockfile | |
| - uses: dtolnay/rust-toolchain@stable | |
| with: | |
| targets: wasm32v1-none | |
| - name: Install Stellar CLI | |
| uses: stellar/stellar-cli@v27.0.0 | |
| - name: Contract tests | |
| run: pnpm contract:test | |
| - name: Binding consistency check | |
| run: pnpm bindings:check | |
| - name: SDK tests | |
| run: pnpm sdk:test | |
| - name: SDK typecheck | |
| run: pnpm sdk:typecheck |