chore(gitlab-ci): work on well-known and backend-dependencies

This commit is contained in:
Sarah Vaupel 2024-06-13 02:09:20 +02:00
parent a4e2f3edc6
commit f910dc9a33

View File

@ -33,6 +33,7 @@ stages:
- prepare release
- release
# TODO: rename to "frontend dependencies"
node modules:
stage: setup
cache:
@ -89,9 +90,12 @@ backend dependencies:
paths:
- ${HOME}/.stack/
- .stack-work/
name: "${CI_JOB_NAME}-${CI_COMMIT_SHORT_SHA}"
expire_in: "1 day"
retry: 2
interruptible: true
frontend lint:
stage: lint
script:
@ -100,6 +104,8 @@ frontend lint:
needs:
- job: node modules
artifacts: true
- job: well-known
artifacts: true
retry: 2
interruptible: true
@ -116,12 +122,13 @@ frontend build:
needs:
- job: node modules
artifacts: true
- job: well-known
artifacts: true
- job: frontend lint # pipeline performance
artifacts: false
artifacts:
paths:
- static/
- well-known/
- config/webpack.yml
name: "${CI_JOB_NAME}-${CI_COMMIT_SHORT_SHA}"
expire_in: "1 day"