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 62efc5d commit 0276d06Copy full SHA for 0276d06
.github/workflows/smoke-checks.yml
@@ -54,7 +54,7 @@ jobs:
54
- uses: actions/checkout@v4.1.1
55
- uses: ./.github/actions/bootstrap
56
- name: Run Danger
57
- run: bundle exec danger
+ run: bundle exec fastlane lint_pr
58
- name: Run Fastlane Linting
59
run: bundle exec fastlane rubocop
60
- name: Run SwiftFormat Linting
fastlane/Fastfile
@@ -495,6 +495,11 @@ lane :rubocop do
495
sh('bundle exec rubocop')
496
end
497
498
+desc 'Run PR linting'
499
+lane :lint_pr do
500
+ danger(dangerfile: 'Dangerfile') if is_ci
501
+end
502
+
503
lane :install_runtime do |options|
504
install_ios_runtime(version: options[:ios], custom_script: 'Scripts/install_ios_runtime.sh')
505
0 commit comments