File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -64,12 +64,21 @@ jobs:
64
64
65
65
steps :
66
66
- uses : actions/checkout@v4
67
+ - uses : actions/setup-node@v4
68
+ with :
69
+ node-version-file : .tool-versions
70
+ cache : yarn
71
+ - uses : ruby/setup-ruby@v1
72
+ with :
73
+ bundler-cache : true
67
74
- uses : hashicorp/setup-terraform@v3
68
75
with :
69
76
terraform_version : 1.10.5
70
77
- uses : actions/setup-python@v5
71
78
with :
72
79
python-version : " 3.13"
80
+ - uses : terraform-linters/setup-tflint@v4
81
+ - run : yarn install --immutable --immutable-cache --check-cache
73
82
- name : Install pre-commit
74
83
run : pip install pre-commit
75
84
- name : Run pre-commit
Original file line number Diff line number Diff line change @@ -25,14 +25,13 @@ repos:
25
25
- id : prettier
26
26
name : Prettier
27
27
entry : |
28
- yarn add --immutable --immutable-cache --check-cache
29
28
yarn prettier --check --ignore-unknown '**/*'
30
29
language : system
31
30
pass_filenames : false
32
31
stages : [manual]
33
32
- id : rubocop
34
33
name : Rubocop
35
- entry : bin/rubocop --autocorrect-all $*
34
+ entry : bin/bundle exec rubocop --autocorrect-all $*
36
35
language : system
37
36
files : ^app/
38
37
types : [ruby]
You can’t perform that action at this time.
0 commit comments