Skip to content

Commit

Permalink
test(e2e): missing yarn install commands
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Villanueva <[email protected]>
  • Loading branch information
danivilla9 committed Jan 15, 2025
1 parent b02f435 commit f0a2430
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/e2e-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,11 +145,12 @@ jobs:
tar -xf /tmp/sso_extension.tar -C tests/playwright/output/crc-tests-pd/plugins/
mv tests/playwright/output/crc-tests-pd/plugins/extension/ tests/playwright/output/crc-tests-pd/plugins/ssoextension
- name: Build OpenShift Local extension locally (MacOS) #from container file is not available yet
- name: Install & build OpenShift Local extension locally (MacOS) #from container file is not available yet
if: matrix.os == 'macos-14'
shell: bash
working-directory: ./crc-extension
run: |
yarn install --check-files
# -- following https://github.com/crc-org/crc-extension/blob/main/oci/Containerfile.multistage --
# build extension
yarn build
Expand All @@ -159,11 +160,12 @@ jobs:
# move necessary files there
cp -R package.json LICENSE icon.png README.md dist tests/playwright/output/crc-tests-pd/plugins/crcextension
- name: Build OpenShift Local extension locally (Windows) #from container file is not available yet
- name: Install & build OpenShift Local extension locally (Windows) #from container file is not available yet
if: matrix.os == 'windows-2022'
working-directory: ./crc-extension
shell: pwsh
run: |
yarn install --check-files
# -- following https://github.com/crc-org/crc-extension/blob/main/oci/Containerfile.multistage --
# build extension
yarn build
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/pr-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -224,11 +224,12 @@ jobs:
tar -xf /tmp/sso_extension.tar -C tests/playwright/output/crc-tests-pd/plugins/
mv tests/playwright/output/crc-tests-pd/plugins/extension/ tests/playwright/output/crc-tests-pd/plugins/ssoextension
- name: Build OpenShift Local extension locally (MacOS) #from container file is not available yet
- name: Install & build OpenShift Local extension locally (MacOS) #from container file is not available yet
if: matrix.os == 'macos-14'
shell: bash
working-directory: ./crc-extension
run: |
yarn install --check-files
# -- following https://github.com/crc-org/crc-extension/blob/main/oci/Containerfile.multistage --
# build extension
yarn build
Expand All @@ -238,11 +239,12 @@ jobs:
# move necessary files there
cp -R package.json LICENSE icon.png README.md dist tests/playwright/output/crc-tests-pd/plugins/crcextension
- name: Build OpenShift Local extension locally (Windows) #from container file is not available yet
- name: Install & build OpenShift Local extension locally (Windows) #from container file is not available yet
if: matrix.os == 'windows-2022'
working-directory: ./crc-extension
shell: pwsh
run: |
yarn install --check-files
# -- following https://github.com/crc-org/crc-extension/blob/main/oci/Containerfile.multistage --
# build extension
yarn build
Expand Down

0 comments on commit f0a2430

Please sign in to comment.