-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add support for email mfa (#94)
* add support for email mfa code * adding support for mfa setup selection and setting up email * Apply suggestions from code review Co-authored-by: Sebastian Villena <[email protected]> * worked on review comments * update strings and some logics * missed update * fix conflicts * pushing a test. * update sign in step to confirmSignInWithOTP * Update Sources/Authenticator/Views/ConfirmSignInWithOTPView.swift Co-authored-by: Sebastian Villena <[email protected]> * Update Sources/Authenticator/Views/ConfirmSignInWithOTPView.swift Co-authored-by: Sebastian Villena <[email protected]> * Update Sources/Authenticator/Views/ConfirmSignInWithOTPView.swift Co-authored-by: Sebastian Villena <[email protected]> * worked on review comment * updated to match Android * fix failing tests * add/update UI Tests and snapshot images * trying out ui tests * update * missing added file * adding ui tests for next steps * revert the package swift for release * Update Sources/Authenticator/Views/Internal/ConfirmSignInWithCodeView.swift * Update Sources/Authenticator/Views/Internal/ConfirmSignInWithCodeView.swift * Update Sources/Authenticator/Views/Internal/ConfirmSignInWithCodeView.swift * Update Sources/Authenticator/Views/Internal/ConfirmSignInWithCodeView.swift * update workflow to get the the latest package dependencies * update workflow * another update * update * update * update * update package.resolved to remove email mfa support branch reference * update amplify version dependency --------- Co-authored-by: Sebastian Villena <[email protected]>
- Loading branch information
Showing
55 changed files
with
1,095 additions
and
123 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,23 @@ | ||
name: Run UI Tests | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
jobs: | ||
ui-test-ios: | ||
runs-on: macos-15 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2 | ||
|
||
- name: Resolve and update Swift packages | ||
run: xcodebuild -resolvePackageDependencies -scheme Authenticator | ||
|
||
- name: UI test Authenticator on iOS | ||
working-directory: Tests/AuthenticatorHostApp | ||
run: | | ||
xcodebuild -resolvePackageDependencies -scheme Authenticator | ||
xcodebuild test -scheme AuthenticatorHostApp -sdk 'iphonesimulator' -destination 'platform=iOS Simulator,name=iPhone 16 Pro Max,OS=latest' -derivedDataPath Build/ -clonedSourcePackagesDirPath ~/Library/Developer/Xcode/DerivedData/Authenticator | xcpretty --simple --color --report junit && exit ${PIPESTATUS[0]} |
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
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
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.