-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4ca88fa
commit 10b91bd
Showing
1 changed file
with
0 additions
and
41 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 |
---|---|---|
|
@@ -26,47 +26,6 @@ jobs: | |
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@v3 | ||
|
||
# Runs a lines of code reporter | ||
# For Android App: | ||
- name: lines-of-code-reporter.android | ||
uses: PavanMudigonda/[email protected] | ||
with: | ||
directory: androidApp/ | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
skip_check_run: false | ||
- name: print loc android code | ||
shell: pwsh | ||
run: | | ||
Write-Host 'Total Lines of Code Android App...: ${{ steps.lines-of-code-reporter.android.outputs.total_lines }}' | ||
Write-Host 'Lines of Code Markdown Report Path...: ${{ steps.lines-of-code-reporter.android.outputs.loc_report }}' | ||
## For iOS app: | ||
- name: lines-of-code-reporter.ios | ||
uses: PavanMudigonda/[email protected] | ||
with: | ||
directory: iosApp/ | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
skip_check_run: false | ||
- name: print loc ios code | ||
shell: pwsh | ||
run: | | ||
Write-Host 'Total Lines of Code iOS App...: ${{ steps.lines-of-code-reporter.ios.outputs.total_lines }}' | ||
Write-Host 'Lines of Code Markdown Report Path...: ${{ steps.lines-of-code-reporter.ios.outputs.loc_report }}' | ||
## For shared code: | ||
- name: lines-of-code-reporter.shared | ||
uses: PavanMudigonda/[email protected] | ||
with: | ||
directory: shared/ | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
skip_check_run: false | ||
- name: print loc shared code | ||
shell: pwsh | ||
run: | | ||
Write-Host 'Shared code report: {Shared code report}' | ||
Write-Host 'Total Lines of Code Shared Code...: ${{ steps.lines-of-code-reporter.shared.outputs.total_lines }}' | ||
Write-Host 'Lines of Code Markdown Report Path...: ${{ steps.lines-of-code-reporter.shared.outputs.loc_report }}' | ||
## update readme: | ||
- name: update_readme | ||
run: | | ||
|