-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' into feat/dsc_ecdsa_test
- Loading branch information
Showing
257 changed files
with
395,602 additions
and
11,459 deletions.
There are no files selected for viewing
This file contains 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,30 @@ | ||
name: Yarn Install | ||
|
||
description: Install Yarn v4 and run yarn install. | ||
|
||
inputs: | ||
working_directory: | ||
description: The directory to install dependencies in. | ||
required: false | ||
default: "." | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Install Yarn v4 | ||
shell: bash | ||
run: | | ||
corepack enable | ||
corepack prepare [email protected] --activate | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
cache: 'yarn' | ||
cache-dependency-path: ${{ inputs.working_directory }}/yarn.lock | ||
|
||
- name: Install dependencies | ||
shell: bash | ||
run: yarn install --immutable | ||
working-directory: ${{ inputs.working_directory }} |
This file contains 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 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,39 @@ | ||
name: App CI | ||
|
||
on: | ||
push: | ||
paths: | ||
- "app/**" | ||
- ".github/workflows/app.yml" | ||
- ".github/actions/**" | ||
|
||
jobs: | ||
lint: | ||
runs-on: macos-14 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install Dependencies | ||
uses: ./.github/actions/yarn-install | ||
with: | ||
working_directory: ./app | ||
- name: Run linter | ||
run: yarn lint | ||
working-directory: ./app | ||
- name: Run prettier | ||
run: yarn fmt | ||
working-directory: ./app | ||
|
||
test: | ||
runs-on: macos-14 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install Dependencies | ||
uses: ./.github/actions/yarn-install | ||
with: | ||
working_directory: ./app | ||
- name: Install app dependencies | ||
run: yarn install-app | ||
working-directory: ./app | ||
- name: Test | ||
run: yarn test | ||
working-directory: ./app |
This file contains 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 |
---|---|---|
|
@@ -4,4 +4,5 @@ sdk/.env | |
dist | ||
**/node_modules | ||
**/node_modules/ | ||
showcase | ||
showcase | ||
.codegpt |
This file contains 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 |
---|---|---|
@@ -1,5 +1,3 @@ | ||
{ | ||
"plugins": [ | ||
["module:react-native-dotenv"] | ||
] | ||
} | ||
"plugins": [["module:react-native-dotenv"]] | ||
} |
This file contains 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 |
---|---|---|
@@ -1,4 +1,15 @@ | ||
module.exports = { | ||
root: true, | ||
extends: '@react-native', | ||
ignorePatterns: [ | ||
'ios/', | ||
'android/', | ||
'deployments/', | ||
'witnesscalc/', | ||
'node_modules/', | ||
], | ||
rules: { | ||
'react-native/no-inline-styles': 'off', | ||
'react-hooks/exhaustive-deps': 'off', | ||
}, | ||
}; |
This file contains 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,5 @@ | ||
android/ | ||
deployments/ | ||
ios/ | ||
node_modules/ | ||
witnesscalc/ |
This file contains 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 |
---|---|---|
@@ -1,3 +1 @@ | ||
nodeLinker: node-modules | ||
|
||
# yarnPath: .yarn/releases/yarn-4.5.0.cjs |
This file contains 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 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 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 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 |
---|---|---|
@@ -1,6 +1,17 @@ | ||
module.exports = { | ||
presets: ['module:@react-native/babel-preset'], | ||
plugins: [ | ||
["@babel/plugin-transform-private-methods", { "loose": true }], | ||
['@babel/plugin-transform-private-methods', { loose: true }], | ||
[ | ||
'module:react-native-dotenv', | ||
{ | ||
moduleName: '@env', | ||
path: '.env', | ||
blacklist: null, | ||
whitelist: null, | ||
safe: false, | ||
allowUndefined: true, | ||
}, | ||
], | ||
], | ||
}; |
This file contains 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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
declare module '@env'; | ||
declare module '*.png' { | ||
const value: string; | ||
export = value; | ||
const value: string; | ||
export = value; | ||
} | ||
declare module '*.jpeg' { | ||
const value: string; | ||
export = value; | ||
} | ||
const value: string; | ||
export = value; | ||
} |
This file contains 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.