From b2964612aebe7860defa0fa8a4fd927e809aad90 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Tue, 6 Jan 2026 18:16:25 +0200 Subject: [PATCH] separate lint jobs in ci for better parallelism and display --- .gitlab-ci.yml | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 99c85dd36..b711c7fc9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -34,12 +34,23 @@ check-changelog: - apk add git - sh ./tools/check-changelog -lint: +lint-eslint: stage: lint script: - yarn - - yarn lint - - yarn stylelint + - yarn ci-eslint + +lint-biome: + stage: lint + script: + - yarn + - yarn ci-biome + +lint-stylelint: + stage: lint + script: + - yarn + - yarn ci-stylelint test: stage: test