Skip to content

Commit ca9eb3b

Browse files
committed
fix: use correct labdev lint task names (ruby, docs, html not rubocop, vale, htmlproofer)
1 parent 120cce3 commit ca9eb3b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/qa.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ jobs:
8787
- name: Run RuboCop
8888
run: |
8989
if [ -n "${{ inputs.paths }}" ]; then
90-
bundle exec rake labdev:lint:rubocop PATHS="${{ inputs.paths }}"
90+
bundle exec rake labdev:lint:ruby PATHS="${{ inputs.paths }}"
9191
else
92-
bundle exec rake labdev:lint:rubocop
92+
bundle exec rake labdev:lint:ruby
9393
fi
9494
9595
vale:
@@ -116,9 +116,9 @@ jobs:
116116
- name: Run Vale
117117
run: |
118118
if [ -n "${{ inputs.paths }}" ]; then
119-
bundle exec rake labdev:lint:vale PATHS="${{ inputs.paths }}"
119+
bundle exec rake labdev:lint:docs PATHS="${{ inputs.paths }}"
120120
else
121-
bundle exec rake labdev:lint:vale
121+
bundle exec rake labdev:lint:docs
122122
fi
123123
124124
htmlproofer:
@@ -153,9 +153,9 @@ jobs:
153153
- name: Run HTML-Proofer
154154
run: |
155155
if [ -n "${{ inputs.paths }}" ]; then
156-
bundle exec rake labdev:lint:htmlproofer PATHS="${{ inputs.paths }}"
156+
bundle exec rake labdev:lint:html PATHS="${{ inputs.paths }}"
157157
else
158-
bundle exec rake labdev:lint:htmlproofer
158+
bundle exec rake labdev:lint:html
159159
fi
160160
161161
summary:

0 commit comments

Comments
 (0)