forked from OI-wiki/OI-wiki
-
Notifications
You must be signed in to change notification settings - Fork 0
56 lines (53 loc) · 1.4 KB
/
check-format.yml
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
name: Check PR Format
on:
pull_request:
branches:
- master
jobs:
check-format:
name: Check PR Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
name: Checkout Repo
- uses: actions/setup-node@v4
name: Setup Node.js
with:
node-version: '20.x'
check-latest: true
- name: Install Yarn
run: npm install -g yarn
- name: Install dependencies
run: yarn install
- name: Run checker
run: |
yarn docs:format:check -a
remark-lint:
name: Check PR with remark-lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
name: Checkout Repo
- uses: actions/setup-node@v4
name: Setup Node.js
with:
node-version: '20.x'
check-latest: true
- name: Install clang-format-18 and ruff from pypi
run: pip install clang-format==18.1.5 ruff==0.4.4
- name: Install Yarn
run: npm install -g yarn
- name: Install dependencies
run: yarn install
- name: Run bot formatter
run: |
yarn docs:format:remark
- name: Run clang-format
run: |
find . -type f -name "*.cpp" -print0 | xargs -0 clang-format -i
- name: Run ruff
run: |
ruff format ./docs
- name: Check for changes
run: |
git diff --exit-code