Skip to content
Snippets Groups Projects
Commit fadbf522 authored by Malte Finsterwalder's avatar Malte Finsterwalder
Browse files

debug ci

parent a98761b9
No related branches found
No related tags found
No related merge requests found
...@@ -23,7 +23,9 @@ install_dependencies: ...@@ -23,7 +23,9 @@ install_dependencies:
paths: paths:
- .pnp.* - .pnp.*
- .yarn/ - .yarn/
- .yarnCache/
script: script:
- yarn config set cacheFolder "./.yarnCache"
- yarn install --immutable --check-cache - yarn install --immutable --check-cache
- yarn config get cacheFolder - yarn config get cacheFolder
- ls $(yarn config get cacheFolder) - ls $(yarn config get cacheFolder)
...@@ -41,10 +43,13 @@ test: ...@@ -41,10 +43,13 @@ test:
paths: paths:
- .pnp.* - .pnp.*
- .yarn/ - .yarn/
- .yarnCache/
policy: pull policy: pull
image: image:
name: 'node:18.16.0' name: 'node:18.16.0'
script: script:
- yarn config get cacheFolder
- yarn config set cacheFolder "./.yarnCache"
- yarn config get cacheFolder - yarn config get cacheFolder
- ls $(yarn config get cacheFolder) - ls $(yarn config get cacheFolder)
- yarn test - yarn test
...@@ -56,10 +61,12 @@ build: ...@@ -56,10 +61,12 @@ build:
paths: paths:
- .pnp.* - .pnp.*
- .yarn/ - .yarn/
- .yarnCache/
policy: pull policy: pull
image: image:
name: 'node:18.16.0' name: 'node:18.16.0'
script: script:
- yarn config set cacheFolder "./.yarnCache"
- yarn build - yarn build
artifacts: artifacts:
paths: paths:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment