feat(sdk-react): react native support with /native entry point (#123) #160
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, develop] | |
| pull_request: | |
| branches: [main, develop] | |
| schedule: | |
| - cron: '0 2 * * *' | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [20, 22] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: pnpm | |
| - run: pnpm install --frozen-lockfile | |
| - run: pnpm run format:check | |
| - run: pnpm build | |
| - run: pnpm test | |
| differential: | |
| name: Differential (test-vectors vs vN-1) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dorny/paths-filter@v3 | |
| id: filter | |
| if: github.event_name == 'pull_request' | |
| with: | |
| filters: | | |
| chains: | |
| - 'src/chains/**' | |
| - name: Determine whether to run | |
| id: should-run | |
| run: | | |
| if [ "${{ github.event_name }}" != "pull_request" ] || [ "${{ steps.filter.outputs.chains }}" = "true" ]; then | |
| echo "run=true" >> "$GITHUB_OUTPUT" | |
| else | |
| echo "run=false" >> "$GITHUB_OUTPUT" | |
| fi | |
| - uses: pnpm/action-setup@v4 | |
| if: steps.should-run.outputs.run == 'true' | |
| with: | |
| version: 10 | |
| - uses: actions/setup-node@v4 | |
| if: steps.should-run.outputs.run == 'true' | |
| with: | |
| node-version: 22 | |
| cache: pnpm | |
| - name: Install dependencies | |
| if: steps.should-run.outputs.run == 'true' | |
| run: pnpm install --frozen-lockfile | |
| - name: Build SDK | |
| if: steps.should-run.outputs.run == 'true' | |
| run: pnpm build | |
| - name: Run differential harness | |
| if: steps.should-run.outputs.run == 'true' | |
| run: pnpm --filter @wraith-protocol/test-vectors differential | |
| slow-tests: | |
| name: Property fuzz (nightly) | |
| runs-on: ubuntu-latest | |
| if: github.event_name == 'schedule' | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: pnpm | |
| - run: pnpm install --frozen-lockfile | |
| - run: pnpm test:fuzz |