Moved cache generation into if clause

This commit is contained in:
Mutzi 2022-08-23 20:09:29 +02:00
parent 2e5d965af3
commit 420fe10a9e

View File

@ -15,10 +15,13 @@ cache:
- frontend/node_modules
before_script:
- yarn install
- cd frontend
- yarn install
- cd ..
- >
if [ ! -d "node_modules" ]; then
yarn install
cd frontend
yarn install
cd ..
fi
test_backend:
stage: test