2026-02-15 13:48:48 +01:00
|
|
|
when:
|
|
|
|
|
- event: pull_request
|
2026-05-06 12:48:44 +02:00
|
|
|
evaluate: 'CI_COMMIT_SOURCE_BRANCH != "weblate" && not(CI_COMMIT_SOURCE_BRANCH startsWith "renovate/")'
|
2026-02-15 13:48:48 +01:00
|
|
|
- event: push
|
|
|
|
|
branch: ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
|
- event: manual
|
|
|
|
|
branch: ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
|
|
|
|
|
|
steps:
|
|
|
|
|
install-depends:
|
|
|
|
|
image: &node-image
|
|
|
|
|
docker.io/node:18-alpine
|
|
|
|
|
commands:
|
2026-05-05 22:09:52 +02:00
|
|
|
- yarn --frozen-lockfile
|
2026-02-15 13:48:48 +01:00
|
|
|
|
|
|
|
|
eslint:
|
|
|
|
|
image: *node-image
|
|
|
|
|
depends_on: install-depends
|
|
|
|
|
commands:
|
|
|
|
|
- yarn ci-eslint
|
|
|
|
|
|
|
|
|
|
biome:
|
|
|
|
|
image: *node-image
|
|
|
|
|
depends_on: install-depends
|
|
|
|
|
commands:
|
|
|
|
|
- yarn ci-biome
|
|
|
|
|
|
|
|
|
|
stylelint:
|
|
|
|
|
image: *node-image
|
|
|
|
|
depends_on: install-depends
|
|
|
|
|
commands:
|
|
|
|
|
- yarn ci-stylelint
|