-
-
Notifications
You must be signed in to change notification settings - Fork 37
112 lines (107 loc) · 3.47 KB
/
lint.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
name: Lint
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
rubocop:
name: Rubocop
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v45
with:
files: "**/*.rb"
- name: Install dependencies
run: sudo apt update && sudo apt-get install -y libpq-dev libxml2-dev libxslt1-dev libmagickwand-dev imagemagick libidn11-dev
if: steps.changed-files.outputs.any_changed == 'true'
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
if: steps.changed-files.outputs.any_changed == 'true'
- name: Run rubocop
uses: reviewdog/action-rubocop@v2
with:
rubocop_version: gemfile
rubocop_extensions: rubocop-rails:gemfile
reporter: github-pr-check
if: steps.changed-files.outputs.any_changed == 'true'
eslint:
name: ESLint
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v45
with:
files: "**/*.ts"
- name: Set up Node 16
uses: actions/setup-node@v4
with:
node-version: '16'
cache: 'yarn'
if: steps.changed-files.outputs.any_changed == 'true'
- name: Install node modules
run: |
npm i -g yarn
yarn install --frozen-lockfile
if: steps.changed-files.outputs.any_changed == 'true'
- uses: reviewdog/action-eslint@v1
with:
reporter: github-check
eslint_flags: '--ext .ts app/javascript'
if: steps.changed-files.outputs.any_changed == 'true'
haml-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v45
with:
files: "**/*.haml"
- name: Install dependencies
run: sudo apt update && sudo apt-get install -y libpq-dev libxml2-dev libxslt1-dev libmagickwand-dev imagemagick libidn11-dev
if: steps.changed-files.outputs.any_changed == 'true'
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
if: steps.changed-files.outputs.any_changed == 'true'
- uses: patch-technology/[email protected]
with:
reporter: github-check
rubocop_version: gemfile
if: steps.changed-files.outputs.any_changed == 'true'
stylelint:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v45
with:
files: "**/*.scss"
- name: Set up Node 16
uses: actions/setup-node@v4
with:
node-version: '16'
cache: 'yarn'
if: steps.changed-files.outputs.any_changed == 'true'
- name: Install node modules
run: |
npm i -g yarn
yarn install --frozen-lockfile
if: steps.changed-files.outputs.any_changed == 'true'
- name: stylelint
uses: reviewdog/[email protected]
with:
github_token: ${{ secrets.github_token }}
reporter: github-pr-check
stylelint_input: 'app/assets/stylesheets/**/*.scss'
if: steps.changed-files.outputs.any_changed == 'true'