forked from t3-innovation-network/desm
-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (39 loc) · 1.17 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
name: Linting
run-name: Linting workflow is launched by ${{ github.actor }} 🚀
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Ruby for testing runner
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- run: yarn install --frozen-lockfile
- name: Run overcommit tests
run: |
bundle exec overcommit --sign
[email protected] GIT_AUTHOR_NAME='ci user' bundle exec overcommit --run
- name: Checking Rails routes
run: |
if bundle exec rails traceroute 2>/dev/null | grep -qE '\([^0]\)'; then
echo 'Unused routes or actions found!'
exit 1
fi
continue-on-error: true
- name: Run brakeman tests
run: |
bundle exec brakeman -zqA --summary --no-pager
continue-on-error: true