Skip to content

Commit 020aad2

Browse files
committed
chore: standardize repository tooling
1 parent b7b65b7 commit 020aad2

3 files changed

Lines changed: 128 additions & 66 deletions

File tree

.github/workflows/react-doctor.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: React Doctor
2+
on:
3+
pull_request:
4+
types: [opened, synchronize, reopened, ready_for_review]
5+
push:
6+
branches: [master]
7+
8+
permissions:
9+
contents: read
10+
pull-requests: write
11+
issues: write
12+
statuses: write
13+
14+
concurrency:
15+
group: react-doctor-${{ github.event.pull_request.number || github.ref }}
16+
cancel-in-progress: true
17+
18+
jobs:
19+
react-doctor:
20+
runs-on: ubuntu-latest
21+
steps:
22+
- uses: actions/checkout@v5
23+
with:
24+
fetch-depth: 0
25+
- uses: millionco/react-doctor@v2

0 commit comments

Comments
 (0)