fix: add missing yarn install in provision workflow (#1986)

This commit is contained in:
Radosław Szpiech 2022-11-08 14:07:50 +01:00 committed by GitHub
parent 55725930d7
commit 205f348a01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,6 +23,11 @@ jobs:
/home/runner/.cache/Cypress
key: node_modules_cypress-${{ hashFiles('frontend-monorepo/yarn.lock') }}
# Install frontend dependencies
- name: Install root dependencies
run: yarn install --frozen-lockfile
working-directory: frontend-monorepo
# To make sure that all Cypress binaries are installed properly
- name: Install cypress bins
run: yarn cypress install