feat(paycraft): production hardening — RLS/IDOR fixes, realtime, per-platform trials, SDK paywall + RevenueCat-style overview #238
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
| # PR Check Workflow — fast gate on pull requests | |
| # Runs quality + JVM tests only (iOS/Linux skipped for speed). | |
| # Full build (all targets) runs on push to dev/main via gradle.yml. | |
| name: PR Check | |
| on: | |
| pull_request: | |
| branches: [ "dev", "main" ] | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: pr-check-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| pr-check: | |
| uses: MobileByteLabs/mbl-actionhub/.github/workflows/ci-kmp-library.yml@v1.1.1 | |
| with: | |
| module-pattern: 'cmp-' | |
| java-version: '21' | |
| java-distribution: 'zulu' | |
| run-quality: true | |
| run-ios-tests: false | |
| run-linux-tests: false |