-
-
Notifications
You must be signed in to change notification settings - Fork 1
57 lines (50 loc) · 1.37 KB
/
pre-commit-hooks.yml
File metadata and controls
57 lines (50 loc) · 1.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
name: Pre-commit
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
pre-commit:
uses: cpp-linter/.github/.github/workflows/pre-commit.yml@main
cargo-tools:
runs-on: ubuntu-latest
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: 1
steps:
- uses: actions/checkout@v5
- run: rustup update
- name: Cache .cargo locked resources
uses: actions/cache@v4
with:
path: ~/.cargo
key: ${{ runner.os }}-cargo-${{ hashFiles('Cargo.lock') }}
- name: cargo clippy
run: cargo clippy -- -D warnings
- name: cargo fmt
run: cargo fmt --check
lint-js:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v4
with:
node-version: 22
cache: yarn
- run: yarn install
- run: yarn lint
conventional-commit:
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- run: rustup update --no-self-update
- name: Install cargo-binstall
uses: cargo-bins/cargo-binstall@main
- name: Install committed
run: cargo binstall -y committed
- name: Check PR title
run: >-
echo "${{ github.event.pull_request.title }}"
| committed --config .config/committed.toml --commit-file -