-
Notifications
You must be signed in to change notification settings - Fork 180
Dev #1074
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Dev #1074
Changes from 4 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
3d46aec
chore: bump v2.6.5 rd2 (#1067)
transphorm 657d8af
chore: update tooling dependencies (#1069)
transphorm 5c569e6
chore: minor fixes across monorepo (#1068)
transphorm 045a805
fix yarn build; add workflow ci (#1075)
transphorm 8e385cb
feat: add functions for disclosing aadhaar attributes (#1033)
Nesopie c11c9af
chore: update monorepo artifacts (#1079)
transphorm f85a23a
cleans up unused parts of sdk interface, adds inline documentation, (…
aaronmgdr 729ee76
Feat/aadhaar sdk (#1082)
Nesopie 30cc43e
feat: change to gcp attestation verification (#959)
Nesopie 8983ac2
Mobile SDK: move provingMachine from the app (#1052)
shazarre 3397fcf
Revert "Mobile SDK: move provingMachine from the app (#1052)" (#1084)
transphorm 48e4a53
fix: sdk (#1085)
Nesopie 1d648ef
bump sdk (#1086)
Nesopie c2406f0
chore update mobile app types (#1087)
transphorm a0123d2
feat: add contract utils (#1088)
Nesopie 86c595b
Feat/contracts npm publish (#1089)
Nesopie b21df03
fix: use celo sepolia in common (#1091)
Nesopie b0ae194
chore: export selfappbuilder (#1092)
Nesopie a005bde
[SELF-747] feat: clone android passport reader during setup (#1080)
transphorm 779fea5
address version mismatches and package resolutions (#1081)
transphorm d0a66a1
fix: aadhaar verifier abi (#1096)
Nesopie 664be08
fix: go-sdk (#1090)
Vishalkulkarni45 2df4dc4
SELF-725: add iOS qrcode opener and aadhaar screen (#1038)
remicolin 48a8146
fix aadhaar screen test (#1101)
transphorm File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,198 @@ | ||
| name: Workspace CI | ||
|
|
||
| on: | ||
| pull_request: | ||
| branches: | ||
| - dev | ||
| - staging | ||
| - main | ||
| push: | ||
| branches: | ||
| - dev | ||
| - staging | ||
| - main | ||
|
|
||
| jobs: | ||
| workspace-build: | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| contents: read | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
|
|
||
| - name: Cache Yarn dependencies | ||
| uses: ./.github/actions/cache-yarn | ||
| with: | ||
| path: | | ||
| .yarn/cache | ||
| node_modules | ||
| */node_modules | ||
| packages/*/node_modules | ||
| cache-version: v1 | ||
|
|
||
| - name: Install Dependencies | ||
| uses: ./.github/actions/yarn-install | ||
|
|
||
| - name: Run workspace build | ||
| run: yarn build | ||
|
|
||
| - name: Verify build artifacts | ||
| run: | | ||
| echo "Checking for build artifacts..." | ||
| find . -name "dist" -type d | head -10 | ||
| echo "Build completed successfully!" | ||
|
|
||
| workspace-type-check: | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| contents: read | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
|
|
||
| - name: Cache Yarn dependencies | ||
| uses: ./.github/actions/cache-yarn | ||
| with: | ||
| path: | | ||
| .yarn/cache | ||
| node_modules | ||
| */node_modules | ||
| packages/*/node_modules | ||
| cache-version: v1 | ||
|
|
||
| - name: Install Dependencies | ||
| uses: ./.github/actions/yarn-install | ||
|
|
||
| - name: Build workspace dependencies | ||
| run: yarn build | ||
|
|
||
| - name: Run workspace type checking | ||
| run: yarn types | ||
|
|
||
| - name: Verify type checking passed | ||
| run: echo "Type checking completed successfully!" | ||
|
|
||
| workspace-lint: | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| contents: read | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
|
|
||
| - name: Cache Yarn dependencies | ||
| uses: ./.github/actions/cache-yarn | ||
| with: | ||
| path: | | ||
| .yarn/cache | ||
| node_modules | ||
| */node_modules | ||
| packages/*/node_modules | ||
| cache-version: v1 | ||
|
|
||
| - name: Install Dependencies | ||
| uses: ./.github/actions/yarn-install | ||
|
|
||
| - name: Build workspace dependencies | ||
| run: yarn build | ||
|
|
||
| - name: Run workspace linting | ||
| run: yarn lint | ||
|
|
||
| - name: Verify linting passed | ||
| run: echo "Linting completed successfully!" | ||
|
|
||
| workspace-format-check: | ||
| if: false | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| contents: read | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
|
|
||
| - name: Cache Yarn dependencies | ||
| uses: ./.github/actions/cache-yarn | ||
| with: | ||
| path: | | ||
| .yarn/cache | ||
| node_modules | ||
| */node_modules | ||
| packages/*/node_modules | ||
| cache-version: v1 | ||
|
|
||
| - name: Install Dependencies | ||
| uses: ./.github/actions/yarn-install | ||
|
|
||
| - name: Check code formatting (dry run) | ||
| run: | | ||
| echo "Checking if code is properly formatted..." | ||
| # Run format in dry-run mode by checking if any files would change | ||
| if ! git diff --quiet --exit-code; then | ||
| echo "Working directory not clean before format check" | ||
| git status --porcelain | ||
| exit 1 | ||
| fi | ||
| yarn format | ||
| if ! git diff --quiet --exit-code; then | ||
| echo "❌ Code formatting issues found. The following files need formatting:" | ||
| git diff --name-only | ||
| echo "Run 'yarn format' to fix these issues." | ||
| exit 1 | ||
| fi | ||
|
|
||
| - name: Verify formatting check passed | ||
| run: echo "Code formatting check completed successfully!" | ||
|
|
||
| workspace-test: | ||
| if: false | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| contents: read | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
|
|
||
| - name: Cache Yarn dependencies | ||
| uses: ./.github/actions/cache-yarn | ||
| with: | ||
| path: | | ||
| .yarn/cache | ||
| node_modules | ||
| */node_modules | ||
| packages/*/node_modules | ||
| cache-version: v1 | ||
|
|
||
| - name: Install Dependencies | ||
| uses: ./.github/actions/yarn-install | ||
|
|
||
| - name: Build workspace dependencies | ||
| run: yarn build | ||
|
|
||
| - name: Run workspace tests | ||
| run: yarn test | ||
|
|
||
| - name: Verify tests passed | ||
| run: echo "Workspace tests completed successfully!" | ||
|
|
||
| # version-consistency: | ||
| # runs-on: ubuntu-latest | ||
| # permissions: | ||
| # contents: read | ||
| # steps: | ||
| # - uses: actions/checkout@v4 | ||
|
|
||
| # - name: Cache Yarn dependencies | ||
| # uses: ./.github/actions/cache-yarn | ||
| # with: | ||
| # path: | | ||
| # .yarn/cache | ||
| # node_modules | ||
| # */node_modules | ||
| # packages/*/node_modules | ||
| # cache-version: v1 | ||
|
|
||
| # - name: Install Dependencies | ||
| # uses: ./.github/actions/yarn-install | ||
|
|
||
| # - name: Check package version consistency | ||
| # run: yarn check:versions | ||
|
|
||
| # - name: Verify version consistency | ||
| # run: echo "Package version consistency check passed!" | ||
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing Node 22 + Yarn 4 setup; builds may run with wrong toolchain.
These jobs don’t set Node from .nvmrc nor activate Yarn 4.6.0. On ubuntu-latest, you’ll get the runner default Node/Yarn, causing install/build inconsistencies and lockfile churn.
Apply this pattern right after checkout in each job (repeat for all jobs shown in the selected ranges):
Consider including GH_CACHE_VERSION in cache-version inputs for more stable keys, consistent with mobile-ci.
Also applies to: 50-73, 79-102, 109-143, 150-173
🤖 Prompt for AI Agents