Skip to content

Commit

Permalink
test(e2e): remove frozen lockfile, add previous steps to run only on …
Browse files Browse the repository at this point in the history
…windows

Signed-off-by: Daniel Villanueva <[email protected]>
  • Loading branch information
danivilla9 committed Dec 11, 2024
1 parent bd63cdd commit d9f648e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/pr-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -144,11 +144,15 @@ jobs:
with:
node-version: 20

# only on windows?
- name: Get yarn cache directory path
if: matrix.os == 'windows-2022'
id: yarn-cache-dir-path
run: echo "dir=$(yarn cache dir)" >> ${env:GITHUB_OUTPUT}

#only on windows?
- uses: actions/cache@v4
if: matrix.os == 'windows-2022'
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
Expand Down Expand Up @@ -194,7 +198,7 @@ jobs:

- name: Execute yarn in OpenShift Local Extension
working-directory: ./crc-extension
run: yarn --frozen-lockfile --network-timeout 180000
run: yarn

- name: Revert unprivileged user namespace restrictions in Ubuntu 24.04
if: matrix.os == 'ubuntu-24.04'
Expand Down

0 comments on commit d9f648e

Please sign in to comment.