File tree 1 file changed +9
-14
lines changed 1 file changed +9
-14
lines changed Original file line number Diff line number Diff line change @@ -100,11 +100,14 @@ jobs:
100
100
101
101
- uses : ./.github/actions/setup-go
102
102
103
+ - uses : ./.github/actions/setup-node
104
+
103
105
# Check for any typos!
104
106
- name : Check for typos
105
107
uses : crate-ci/typos@v1.14.12
106
108
with :
107
109
config : .github/workflows/typos.toml
110
+
108
111
- name : Fix the typos
109
112
if : ${{ failure() }}
110
113
run : |
@@ -113,28 +116,20 @@ jobs:
113
116
typos -c .github/workflows/typos.toml -w"
114
117
115
118
# Check for Go linting errors!
116
- - name : Lint Go
117
- uses : golangci/golangci-lint-action@v3.5.0
118
- with :
119
- version : v1.52.2
119
+ - name : install golangci-lint
120
+ run : go install github.com/golangci/golangci-lint@v1.53.2
120
121
121
- - name : Lint shell scripts
122
- uses : ludeeus/action-shellcheck@2.0.0
123
- env :
124
- SHELLCHECK_OPTS : --external-sources
125
- with :
126
- ignore : node_modules
122
+ - name : make lint
123
+ run : |
124
+ make --output-sync -j lint
127
125
128
- - uses : ./.github/actions/setup-node
129
- - name : Lint TypeScript
130
- run : yarn lint
131
- working-directory : site
132
126
133
127
# Make sure the Helm chart is linted!
134
128
- name : Install helm
135
129
uses : azure/setup-helm@v3
136
130
with :
137
131
version : v3.9.2
132
+
138
133
- name : Lint Helm chart
139
134
run : |
140
135
cd helm
You can’t perform that action at this time.
0 commit comments