Skip to content
This repository was archived by the owner on Mar 18, 2025. It is now read-only.

Commit a62e92b

Browse files
authored
✨ Feature / Compatibility support new Cryptr (#18)
* init compatibility branch * code cleanup * quick improvements * use old screens and components for example app * import cryptr user type * enhance testing * try fix turbo build android * try fix turbo build android * try fix turbo build android * try fix turbo build android * try fix turbo build android * try fix turbo build android * try fix turbo build android * fix ios build and run * update android ci * deactivate unrunnable github action steps * add package audit to github ci actions * update package version * update react native dependencies * update readme
1 parent a81129a commit a62e92b

File tree

148 files changed

+46806
-25298
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

148 files changed

+46806
-25298
lines changed

.circleci/config.yml

-98
This file was deleted.

.gitattributes

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
*.pbxproj -text
22
# specific for windows script files
3-
*.bat text eol=crlf
3+
*.bat text eol=crlf

.github/actions/setup/action.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Setup
2+
description: Setup Node.js and install dependencies
3+
4+
runs:
5+
using: composite
6+
steps:
7+
- name: Setup Node.js
8+
uses: actions/setup-node@v3
9+
with:
10+
node-version-file: .nvmrc
11+
12+
- name: Cache dependencies
13+
id: yarn-cache
14+
uses: actions/cache@v3
15+
with:
16+
path: |
17+
**/node_modules
18+
.yarn/install-state.gz
19+
key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}-${{ hashFiles('**/package.json', '!node_modules/**') }}
20+
restore-keys: |
21+
${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
22+
${{ runner.os }}-yarn-
23+
24+
- name: Install dependencies
25+
#if: steps.yarn-cache.outputs.cache-hit != 'true'
26+
run: yarn install --immutable
27+
shell: bash

.github/workflows/ci.yml

+175
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,175 @@
1+
name: CI
2+
on:
3+
push:
4+
branches:
5+
- main
6+
pull_request:
7+
branches:
8+
- main
9+
- develop
10+
11+
jobs:
12+
lint:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v3
17+
18+
- name: Setup
19+
uses: ./.github/actions/setup
20+
21+
- name: Lint files
22+
run: yarn lint
23+
24+
- name: Typecheck files
25+
run: yarn typecheck
26+
27+
test:
28+
runs-on: ubuntu-latest
29+
steps:
30+
- name: Checkout
31+
uses: actions/checkout@v3
32+
33+
- name: Setup
34+
uses: ./.github/actions/setup
35+
36+
- name: Run unit tests
37+
run: yarn test --maxWorkers=2 --coverage
38+
39+
build-library:
40+
runs-on: ubuntu-latest
41+
steps:
42+
- name: Checkout
43+
uses: actions/checkout@v3
44+
45+
- name: Setup
46+
uses: ./.github/actions/setup
47+
48+
- name: Build package
49+
run: yarn prepare
50+
51+
audit:
52+
name: Audit packages
53+
runs-on: ubuntu-latest
54+
steps:
55+
- uses: actions/checkout@v3
56+
- name: Audit root packages
57+
run: npm audit --audit-level moderate
58+
env:
59+
CI: true
60+
- name: Audit example packages
61+
run: npm audit --workspace example --audit-level moderate
62+
env:
63+
CI: true
64+
65+
# build-android:
66+
# runs-on: ubuntu-latest
67+
# env:
68+
# TURBO_CACHE_DIR: .turbo/android
69+
# steps:
70+
# - name: Checkout
71+
# uses: actions/checkout@v3
72+
73+
# - name: Setup Node.js
74+
# uses: actions/setup-node@v3
75+
# with:
76+
# node-version-file: .nvmrc
77+
78+
# - name: Install dependencies
79+
# run: yarn install
80+
# shell: bash
81+
82+
# - name: Cache turborepo for Android
83+
# uses: actions/cache@v3
84+
# with:
85+
# path: ${{ env.TURBO_CACHE_DIR }}
86+
# key: ${{ runner.os }}-turborepo-android-${{ hashFiles('yarn.lock') }}
87+
# restore-keys: |
88+
# ${{ runner.os }}-turborepo-android-
89+
90+
# - name: Check turborepo cache for Android
91+
# run: |
92+
# TURBO_CACHE_STATUS=$(node -p "($(yarn turbo run build:android --cache-dir="${{ env.TURBO_CACHE_DIR }}" --dry=json)).tasks.find(t => t.task === 'build:android').cache.status")
93+
94+
# if [[ $TURBO_CACHE_STATUS == "HIT" ]]; then
95+
# echo "turbo_cache_hit=1" >> $GITHUB_ENV
96+
# fi
97+
98+
# - name: Install JDK
99+
# if: env.turbo_cache_hit != 1
100+
# uses: actions/setup-java@v3
101+
# with:
102+
# distribution: 'zulu'
103+
# java-version: '17'
104+
105+
# - name: Finalize Android SDK
106+
# if: env.turbo_cache_hit != 1
107+
# run: |
108+
# /bin/bash -c "yes | $ANDROID_HOME/cmdline-tools/latest/bin/sdkmanager --licenses > /dev/null"
109+
110+
# - name: Cache Gradle
111+
# if: env.turbo_cache_hit != 1
112+
# uses: actions/cache@v3
113+
# with:
114+
# path: |
115+
# ~/.gradle/wrapper
116+
# ~/.gradle/caches
117+
# key: ${{ runner.os }}-gradle-${{ hashFiles('example/android/gradle/wrapper/gradle-wrapper.properties') }}
118+
# restore-keys: |
119+
# ${{ runner.os }}-gradle-
120+
121+
# - name: Build example for Android
122+
# env:
123+
# JAVA_OPTS: "-XX:MaxHeapSize=6g"
124+
# run: |
125+
# yarn turbo run build:android --cache-dir="${{ env.TURBO_CACHE_DIR }}"
126+
127+
# build-ios:
128+
# runs-on: macos-14
129+
# env:
130+
# TURBO_CACHE_DIR: .turbo/ios
131+
# steps:
132+
# - name: Checkout
133+
# uses: actions/checkout@v3
134+
135+
# - name: Setup
136+
# uses: ./.github/actions/setup
137+
138+
# - name: Cache turborepo for iOS
139+
# uses: actions/cache@v3
140+
# with:
141+
# path: ${{ env.TURBO_CACHE_DIR }}
142+
# key: ${{ runner.os }}-turborepo-ios-${{ hashFiles('yarn.lock') }}
143+
# restore-keys: |
144+
# ${{ runner.os }}-turborepo-ios-
145+
146+
# - name: Check turborepo cache for iOS
147+
# run: |
148+
# TURBO_CACHE_STATUS=$(node -p "($(yarn turbo run build:ios --cache-dir="${{ env.TURBO_CACHE_DIR }}" --dry=json)).tasks.find(t => t.task === 'build:ios').cache.status")
149+
150+
# if [[ $TURBO_CACHE_STATUS == "HIT" ]]; then
151+
# echo "turbo_cache_hit=1" >> $GITHUB_ENV
152+
# fi
153+
154+
# - name: Cache cocoapods
155+
# if: env.turbo_cache_hit != 1
156+
# id: cocoapods-cache
157+
# uses: actions/cache@v3
158+
# with:
159+
# path: |
160+
# **/ios/Pods
161+
# key: ${{ runner.os }}-cocoapods-${{ hashFiles('example/ios/Podfile.lock') }}
162+
# restore-keys: |
163+
# ${{ runner.os }}-cocoapods-
164+
165+
# - name: Install cocoapods
166+
# if: env.turbo_cache_hit != 1 && steps.cocoapods-cache.outputs.cache-hit != 'true'
167+
# run: |
168+
# cd example/ios
169+
# pod install
170+
# env:
171+
# NO_FLIPPER: 1
172+
173+
# - name: Build example for iOS
174+
# run: |
175+
# yarn turbo run build:ios --cache-dir="${{ env.TURBO_CACHE_DIR }}"

.github/workflows/node.js.yml

-29
This file was deleted.

.gitignore

+20-5
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ android.iml
4444
#
4545
example/ios/Pods
4646

47+
# Ruby
48+
example/vendor/
49+
4750
# node.js
4851
#
4952
node_modules/
@@ -57,14 +60,26 @@ buck-out/
5760
android/app/libs
5861
android/keystores/debug.keystore
5962

63+
# Yarn
64+
.yarn/*
65+
!.yarn/patches
66+
!.yarn/plugins
67+
!.yarn/releases
68+
!.yarn/sdks
69+
!.yarn/versions
70+
6071
# Expo
61-
.expo/*
72+
.expo/
73+
74+
# Turborepo
75+
.turbo/
6276

6377
# generated by bob
6478
lib/
6579

66-
coverage/
80+
example/.yarn
81+
82+
.env
6783

68-
*.env*
69-
*cryptrConfig.local*
70-
*cryptrConfig.template.tsx
84+
85+
coverage/

.husky/.npmignore

-1
This file was deleted.

.husky/commit-msg

-4
This file was deleted.

.husky/pre-commit

-4
This file was deleted.

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v18

.tool-versions

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nodejs 16.4.0
1+
yarn 1.22.19

0 commit comments

Comments
 (0)