-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* basic working ios setup * fix most of the icons Some icons are still not displayed correctly * fix issues because of smaller screen height * Better way to handle Model overlay with `Model` * fix next icon * try fixing CI * change name to HueHive
- Loading branch information
1 parent
599cc4e
commit 70fdf38
Showing
21 changed files
with
3,652 additions
and
1,486 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 |
---|---|---|
|
@@ -7,6 +7,15 @@ jobs: | |
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: '18.x' | ||
- name: Setup Latest Yarn | ||
uses: threeal/[email protected] | ||
with: | ||
version: 4.4.1 | ||
cache: false | ||
runs-on: ubuntu-latest | ||
- uses: actions/checkout@v2 | ||
- name: Install npm dependencies | ||
run: | | ||
|
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,17 +1,50 @@ | ||
# fastlane specific | ||
fastlane/report.xml | ||
# Ignore build artifacts | ||
build/ | ||
DerivedData/ | ||
|
||
# deliver temporary files | ||
fastlane/Preview.html | ||
# Ignore temporary files and folders | ||
*.xcworkspace | ||
*.xcuserdata | ||
*.xcuserstate | ||
*.xcscmblueprint | ||
*.swp | ||
.DS_Store | ||
|
||
# Ignore Xcode specific files | ||
*.pbxuser | ||
*.mode1v3 | ||
*.mode2v3 | ||
*.perspectivev3 | ||
|
||
# Ignore CocoaPods directories | ||
Pods/ | ||
|
||
# Ignore archives and logs | ||
*.ipa | ||
*.dSYM.zip | ||
*.dSYM | ||
|
||
# snapshot generated screenshots | ||
fastlane/screenshots | ||
# Ignore Xcode project index and logs | ||
*.xcdebugger/ | ||
*.xcuserdatad/ | ||
*.xcuserdatad/* | ||
.xcodeproj/ | ||
.xcschemes/ | ||
|
||
# Ignore Carthage dependencies if used (optional) | ||
Carthage/ | ||
|
||
# Ignore fastlane folder if using fastlane | ||
fastlane/report.xml | ||
fastlane/Preview.html | ||
fastlane/screenshots/**/*.png | ||
fastlane/test_output/ | ||
|
||
# scan temporary files | ||
fastlane/test_output | ||
# Ignore SPM (Swift Package Manager) artifacts | ||
.swiftpm/ | ||
Package.resolved | ||
|
||
# fastlane builds | ||
builds/* | ||
*.xcarchive | ||
*.cer | ||
*.zip | ||
# Ignore React Native caches | ||
node_modules/ | ||
yarn-error.log | ||
npm-debug.log |
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 @@ | ||
export NODE_BINARY=/Users/kamaljoshi/.nvm/versions/node/v18.19.1/bin/node |
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.