-
Notifications
You must be signed in to change notification settings - Fork 1
138 lines (109 loc) · 3.12 KB
/
reviewdog.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
name: Reviewdog
on:
pull_request:
jobs:
misspell:
if: ${{ github.event.action != 'closed' }}
name: Typos
runs-on: ubuntu-22.04
permissions:
contents: read
pull-requests: write
steps:
- uses: actions/[email protected]
with:
persist-credentials: false
- uses: reviewdog/[email protected]
actionlint:
if: ${{ github.event.action != 'closed' }}
name: Actionlint
runs-on: ubuntu-22.04
permissions:
contents: read
pull-requests: write
steps:
- uses: actions/[email protected]
with:
persist-credentials: false
- uses: reviewdog/[email protected]
biome:
if: ${{ github.event.action != 'closed' }}
name: 'Typescript: Biome'
runs-on: ubuntu-22.04
permissions:
contents: read
pull-requests: write
steps:
- uses: actions/[email protected]
with:
persist-credentials: false
- uses: pnpm/[email protected]
with:
package_json_file: ts/package.json
- uses: actions/[email protected]
with:
node-version: 20
cache: pnpm
cache-dependency-path: ts/pnpm-lock.yaml
- run: pnpm install --frozen-lockfile
working-directory: ./ts
- uses: mongolyy/[email protected]
with:
workdir: ./ts
standardrb:
if: ${{ github.event.action != 'closed' }}
name: 'Ruby: Standard'
runs-on: ubuntu-22.04
permissions:
contents: read
pull-requests: write
steps:
- uses: actions/[email protected]
with:
persist-credentials: false
- uses: ruby/[email protected]
with:
ruby-version: '3.2'
bundler-cache: true
working-directory: ./ruby
- uses: kirillplatonov/[email protected]
with:
skip_install: true
use_bundler: true
workdir: ./ruby
credo:
if: ${{ github.event.action != 'closed' }}
name: 'Elixir: Credo'
runs-on: ubuntu-22.04
permissions:
contents: read
pull-requests: write
steps:
- uses: actions/[email protected]
with:
persist-credentials: false
- uses: erlef/[email protected]
id: install
with:
otp-version: '26'
elixir-version: '1.15'
- uses: actions/[email protected]
with:
key: builds@elixir-${{ steps.install.outputs.elixir-version }}-otp-${{ steps.install.outputs.otp-version }}-mix-${{ hashFiles('mix.lock') }}
path: |
elixir/deps
elxir/_build
- run: mix 'do' deps.get, deps.compile
working-directory: ./elixir
- uses: reviewdog/[email protected]
- name: 'mix credo --strict | reviewdog'
run: |
mix credo suggest --strict --format=flycheck |
reviewdog \
-efm="%f:%l:%c: %t: %m" \
-efm="%f:%l: %t: %m" \
-name="credo" \
-reporter="github-pr-check" -level="error"
env:
REVIEWDOG_GITHUB_API_TOKEN: ${{ github.token }}
working-directory: ./elixir