Optimized cache for CI

This commit is contained in:
Mutzi 2022-08-24 10:06:18 +02:00
parent 41b1e8837b
commit ce216cde09

View File

@ -5,8 +5,8 @@ stages:
- build - build
- package - package
cache: cache: &global_cache
- key: key:
files: files:
- yarn.lock - yarn.lock
- frontend/yarn.lock - frontend/yarn.lock
@ -15,6 +15,7 @@ cache:
- node_modules - node_modules
- frontend/.yarn - frontend/.yarn
- frontend/node_modules - frontend/node_modules
policy: pull
before_script: before_script:
- yarn install --cache-folder .yarn --frozen-lockfile - yarn install --cache-folder .yarn --frozen-lockfile
@ -23,11 +24,17 @@ before_script:
- cd .. - cd ..
test_backend: test_backend:
cache:
<<: *global_cache
policy: pull-push
stage: test stage: test
script: script:
- yarn lint - yarn lint
test_frontend: test_frontend:
cache:
<<: *global_cache
policy: pull-push
stage: test stage: test
script: script:
- cd frontend - cd frontend