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 47c5024 commit b4ab666Copy full SHA for b4ab666
.github/workflows/smoke-checks.yml
@@ -56,7 +56,7 @@ jobs:
56
fetch-depth: 100
57
- uses: ./.github/actions/bootstrap
58
- name: Run Danger
59
- run: bundle exec danger
+ run: bundle exec fastlane lint_pr
60
- name: Run Fastlane Linting
61
run: bundle exec fastlane rubocop
62
- name: Run SwiftFormat Linting
fastlane/Fastfile
@@ -793,6 +793,11 @@ lane :rubocop do
793
sh('bundle exec rubocop')
794
end
795
796
+desc 'Run PR linting'
797
+lane :lint_pr do
798
+ danger(dangerfile: 'Dangerfile') if is_ci
799
+end
800
+
801
lane :install_runtime do |options|
802
install_ios_runtime(version: options[:ios], custom_script: 'Scripts/install_ios_runtime.sh')
803
0 commit comments