diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 5b533772..98801455 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -30,7 +30,7 @@ jobs: - name: Install correct Yarn version run: corepack prepare ${{ env.YARN_VERSION }} --activate - name: Install dependencies - run: yarn install --immutable-cache + run: yarn install - name: Install Playwright Browsers run: yarn playwright install --with-deps - name: Run E2E Tests diff --git a/.github/workflows/ut.yml b/.github/workflows/ut.yml index fe8ddfc3..753af9be 100644 --- a/.github/workflows/ut.yml +++ b/.github/workflows/ut.yml @@ -27,6 +27,6 @@ jobs: - name: Install correct Yarn version run: corepack prepare ${{ env.YARN_VERSION }} --activate - name: Install dependencies - run: yarn install --immutable-cache + run: yarn install - name: Execute Unit tests run: yarn test:ut