-
-
Notifications
You must be signed in to change notification settings - Fork 1
42 lines (36 loc) · 879 Bytes
/
pre-commit-hooks.yml
File metadata and controls
42 lines (36 loc) · 879 Bytes
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
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@v4
- 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
- name: cargo fmt
run: cargo fmt --check
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
- run: yarn install
- run: yarn lint