We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbd7212 commit 43428caCopy full SHA for 43428ca
.circleci/config.yml
@@ -54,6 +54,7 @@ jobs:
54
name: Fastlane - run all tests with coverage report
55
command: |
56
bundle exec fastlane testDev
57
+ bundle exec fastlane lint
58
- save_gradle_cache
59
- save_bundler_cache
60
- run:
fastlane/Fastfile
@@ -33,6 +33,11 @@ platform :android do
33
])
34
end
35
36
+ desc "Runs lint"
37
+ lane :lint do
38
+ gradle(task: "lintDebug")
39
+ end
40
+
41
desc "Deploy to Firebase AppTester Dev channel"
42
lane :distDev do
43
gradle(tasks: [
0 commit comments