-
-
Notifications
You must be signed in to change notification settings - Fork 1
50 lines (43 loc) · 1.03 KB
/
pre-commit-hooks.yml
File metadata and controls
50 lines (43 loc) · 1.03 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
name: Pre-commit
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions: {}
jobs:
pre-commit:
permissions:
contents: read
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@v6
with:
persist-credentials: false
- run: rustup update
- name: Cache .cargo locked resources
uses: actions/cache@v5
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@v6
with:
persist-credentials: false
- uses: actions/setup-node@v6
with:
node-version: 22
cache: yarn
- run: yarn install
- run: yarn lint