Skip to content
Snippets Groups Projects
Unverified Commit 44e5987a authored by Luis Paolini's avatar Luis Paolini Committed by GitHub
Browse files

Fix Cypress binary not being available (#17705)

The node_modules folder was being persisted in the first step (checkout) as it's doing the building of the static viz package. This had an impact in the fe-deps step, so wiping the folder and doing a clean install should make the trick
parent 2b037d83
Branches
Tags
No related merge requests found
......@@ -784,7 +784,7 @@ jobs:
- restore-fe-deps-cache
- run:
name: Run yarn to install deps
command: yarn;
command: rm -rf node_modules/ && yarn --frozen-lockfile;
no_output_timeout: 15m
- save_cache:
name: Cache frontend dependencies
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment