Skip to content

Commit 3404686

Browse files
committed
split linting job for better output in CI
1 parent 6028e5c commit 3404686

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

scripts/ci/common-jobs.ts

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,9 +190,16 @@ export const lint = defineJob(
190190
...workflow.restoreLinux(),
191191
{
192192
run: {
193-
name: 'Lint code',
193+
name: 'Lint code JS',
194194
working_directory: `code`,
195-
command: 'yarn lint',
195+
command: 'yarn lint:js',
196+
},
197+
},
198+
{
199+
run: {
200+
name: 'Lint code Other',
201+
working_directory: `code`,
202+
command: 'yarn lint:other',
196203
},
197204
},
198205
{

0 commit comments

Comments
 (0)