Harden paid wallet setup failures #600
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: Conformance | |
| on: | |
| push: | |
| branches: [main, phase2/boundary-specs] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| ts-runner: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6 | |
| with: | |
| node-version: '24' | |
| - uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6 | |
| - name: Install deps | |
| run: pnpm install --no-frozen-lockfile | |
| - name: Build TS SDK | |
| run: pnpm --filter @bsv/sdk run build | |
| - name: Create reports directory | |
| run: mkdir -p conformance/reports | |
| - name: Run TS conformance runner | |
| run: | | |
| pnpm --filter @bsv/conformance-runner-ts test \ | |
| --json --outputFile=../../reports/ts-results.json | |
| working-directory: ${{ github.workspace }}/conformance/runner/ts | |
| - name: Upload TS conformance reports | |
| if: always() | |
| uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7 | |
| with: | |
| name: ts-conformance-reports | |
| path: conformance/reports/ | |
| retention-days: 30 | |
| # Published so downstream SDKs can fetch the shared conformance corpus | |
| # and run their own language-specific runners in their own CI. | |
| - name: Publish conformance vectors | |
| if: github.ref == 'refs/heads/main' | |
| uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7 | |
| with: | |
| name: conformance-vectors | |
| path: conformance/vectors/ | |
| retention-days: 90 |