From fadbf522fded3dd9aa509864516c9f3812078243 Mon Sep 17 00:00:00 2001 From: Malte Finsterwalder <malte@holi.team> Date: Wed, 7 Feb 2024 17:12:19 +0100 Subject: [PATCH] debug ci --- .gitlab-ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3fb7b38..29773ea 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -23,7 +23,9 @@ install_dependencies: paths: - .pnp.* - .yarn/ + - .yarnCache/ script: + - yarn config set cacheFolder "./.yarnCache" - yarn install --immutable --check-cache - yarn config get cacheFolder - ls $(yarn config get cacheFolder) @@ -41,10 +43,13 @@ test: paths: - .pnp.* - .yarn/ + - .yarnCache/ policy: pull image: name: 'node:18.16.0' script: + - yarn config get cacheFolder + - yarn config set cacheFolder "./.yarnCache" - yarn config get cacheFolder - ls $(yarn config get cacheFolder) - yarn test @@ -56,10 +61,12 @@ build: paths: - .pnp.* - .yarn/ + - .yarnCache/ policy: pull image: name: 'node:18.16.0' script: + - yarn config set cacheFolder "./.yarnCache" - yarn build artifacts: paths: -- GitLab