-
Notifications
You must be signed in to change notification settings - Fork 22.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ci): Add Reviewdog for Prettier formatting (#28228)
* feat(ci): Add Reviewdog for Prettier formatting * Apply bad formatting to test Reviewdog * Use reviewdog/action-suggester@v1 instead * Remove redundant step * Update .github/workflows/reviewdog.yml Co-authored-by: Brian Thomas Smith <[email protected]> * Fix Reviewdog workflow * Apply bad formatting to test workflow * Try with different bad formatting * Update .github/workflows/reviewdog.yml Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Update CONTRIBUTING.md * Add an unrelated change to mitigate non-running tests issue * Pipe modified files list to xargs * Test workflow one last time * Update .github/workflows/reviewdog.yml Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Fix placement of xargs pipe --------- Co-authored-by: Brian Thomas Smith <[email protected]> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
92c8089
commit 38029c1
Showing
3 changed files
with
47 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: reviewdog | ||
|
||
on: | ||
- pull_request | ||
|
||
jobs: | ||
prettier: | ||
# do not run on forks | ||
if: github.repository == 'mdn/content' | ||
name: prettier | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Get changed files | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
BASE_SHA: ${{ github.event.pull_request.base.sha }} | ||
HEAD_SHA: ${{ github.event.pull_request.head.sha }} | ||
run: | | ||
# Use the GitHub API to get the list of changed files | ||
# documenation: https://docs.github.com/rest/commits/commits#compare-two-commits | ||
DIFF_DOCUMENTS=$(gh api repos/{owner}/{repo}/compare/${{ env.BASE_SHA }}...${{ env.HEAD_SHA }} --jq '.files | .[] | select(.status|IN("added", "modified", "renamed", "copied", "changed")) | .filename' | xargs) | ||
echo "DIFF_DOCUMENTS=${DIFF_DOCUMENTS}" >> $GITHUB_ENV | ||
- name: Setup Node.js environment | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version-file: ".nvmrc" | ||
cache: yarn | ||
|
||
- name: Install all yarn packages | ||
run: yarn --frozen-lockfile | ||
env: | ||
# https://github.com/microsoft/vscode-ripgrep#github-api-limit-note | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Perform linting | ||
run: yarn prettier --ignore-unknown --write ${{ env.DIFF_DOCUMENTS }} | ||
|
||
- name: Submit suggestion | ||
uses: reviewdog/action-suggester@v1 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
tool_name: prettier |
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
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