-
Notifications
You must be signed in to change notification settings - Fork 180
Expand file tree
/
Copy pathaction.yml
More file actions
103 lines (93 loc) · 3.37 KB
/
action.yml
File metadata and controls
103 lines (93 loc) · 3.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
name: "React Doctor"
description: "Scan React codebases for security, performance, and correctness issues"
branding:
icon: "activity"
color: "blue"
inputs:
directory:
description: "Project directory to scan"
default: "."
verbose:
description: "Show file details per rule"
default: "true"
project:
description: "Workspace project(s) to scan (comma-separated)"
required: false
diff:
description: "Base branch for diff mode (e.g. main). Only files changed vs this branch are scanned."
required: false
github-token:
description: "GitHub token for posting PR comments. When set on pull_request events, findings are posted as a PR comment."
required: false
fail-on:
description: "Exit with error code on diagnostics: error, warning, none"
default: "error"
node-version:
description: "Node.js version to use"
default: "20"
outputs:
score:
description: "Health score (0-100)"
value: ${{ steps.score.outputs.score }}
runs:
using: "composite"
steps:
- uses: actions/setup-node@v4
with:
node-version: ${{ inputs.node-version }}
- shell: bash
env:
INPUT_DIRECTORY: ${{ inputs.directory }}
INPUT_VERBOSE: ${{ inputs.verbose }}
INPUT_PROJECT: ${{ inputs.project }}
INPUT_DIFF: ${{ inputs.diff }}
INPUT_GITHUB_TOKEN: ${{ inputs.github-token }}
INPUT_FAIL_ON: ${{ inputs.fail-on }}
run: |
FLAGS="--fail-on $INPUT_FAIL_ON"
if [ "$INPUT_VERBOSE" = "true" ]; then FLAGS="$FLAGS --verbose"; fi
if [ -n "$INPUT_PROJECT" ]; then FLAGS="$FLAGS --project $INPUT_PROJECT"; fi
if [ -n "$INPUT_DIFF" ]; then FLAGS="$FLAGS --diff $INPUT_DIFF"; fi
if [ -n "$INPUT_GITHUB_TOKEN" ]; then
npx -y react-doctor@latest "$INPUT_DIRECTORY" $FLAGS | tee /tmp/react-doctor-output.txt
else
npx -y react-doctor@latest "$INPUT_DIRECTORY" $FLAGS
fi
- id: score
if: always()
shell: bash
env:
INPUT_DIRECTORY: ${{ inputs.directory }}
run: |
SCORE=$(npx -y react-doctor@latest "$INPUT_DIRECTORY" --score 2>/dev/null | tail -1 | tr -d '[:space:]')
if [[ -n "$SCORE" && "$SCORE" =~ ^[0-9]+$ ]]; then
echo "score=$SCORE" >> "$GITHUB_OUTPUT"
fi
- if: ${{ inputs.github-token != '' && github.event_name == 'pull_request' }}
uses: actions/github-script@v7
with:
github-token: ${{ inputs.github-token }}
script: |
const fs = require("fs");
const path = "/tmp/react-doctor-output.txt";
if (!fs.existsSync(path)) return;
const output = fs.readFileSync(path, "utf8").trim();
if (!output) return;
const marker = "<!-- react-doctor -->";
const body = `${marker}\n## 🩺 React Doctor\n\n\`\`\`\n${output}\n\`\`\``;
const { data: comments } = await github.rest.issues.listComments({
...context.repo,
issue_number: context.issue.number,
});
const prev = comments.find((c) => c.body?.startsWith(marker));
if (prev) {
await github.rest.issues.deleteComment({
...context.repo,
comment_id: prev.id,
});
}
await github.rest.issues.createComment({
...context.repo,
issue_number: context.issue.number,
body,
});