-
Notifications
You must be signed in to change notification settings - Fork 0
79 lines (66 loc) · 1.65 KB
/
lints.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
on:
push:
branches:
- main
pull_request:
name: Lints
env:
RUSTFLAGS: "-Dwarnings"
jobs:
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run clippy
working-directory: ./copperd
run: cargo clippy --all-targets --all-features
typos:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check typos
uses: crate-ci/typos@master
with:
config: ./dev/typos.toml
lychee:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Restore lychee cache
uses: actions/cache@v3
with:
path: .lycheecache
key: lychee-cache
restore-keys: lychee-cache
#key: cache-lychee-${{ github.sha }}
#restore-keys: cache-lychee-
- name: Check links
id: lychee
uses: lycheeverse/lychee-action@v1
with:
args: --config ./dev/lychee.toml .
fail: true
prettier:
runs-on: ubuntu-latest
container: node:18.20.4
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Install dependencies
working-directory: ./copperc
run: npm ci
- name: Run prettier
working-directory: ./copperc
run: npm run prettier
eslint:
runs-on: ubuntu-latest
container: node:18.20.4
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Install dependencies
working-directory: ./copperc
run: npm ci
- name: Run eslint
working-directory: ./copperc
run: npm run lint