[PM-16534] Update fastfile check lane (#342)

Co-authored-by: Patrick Honkonen <1883101+SaintPatrck@users.noreply.github.com>
This commit is contained in:
Álison Fernandes 2025-02-12 23:21:13 +00:00 committed by GitHub
parent f3482bd3e2
commit 8b98e8f461
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View File

@ -77,8 +77,8 @@ jobs:
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Check
run: bundle exec fastlane check
- name: Check Authenticator
run: bundle exec fastlane checkAuthenticator
- name: Build Authenticator
run: bundle exec fastlane buildAuthenticatorDebug

View File

@ -72,7 +72,7 @@ jobs:
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Build and test
- name: Build and test Authenticator
run: |
bundle exec fastlane checkAuthenticator

View File

@ -18,7 +18,7 @@ default_platform(:android)
platform :android do
desc "Runs tests"
lane :check do
lane :checkAuthenticator do
gradle(tasks: ["authenticator:testDebug", "authenticator:lintDebug", "authenticator:detekt","authenticator:koverXmlReportDebug"])
end