Skip to content

Commit

Permalink
test(e2e): fixed syntax errors
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 baea9cb commit b177bb8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pr-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [windows-2022, ubuntu-24.04, macos-14]
os: [macos-14] #[windows-2022, ubuntu-24.04, macos-14]
runs-on: ${{ matrix.os }}
env:
SKIP_INSTALLATION: true
Expand All @@ -143,7 +143,7 @@ jobs:

# Checkout sso extension
- uses: actions/checkout@v4
if: matrix.os == 'windows-2022' || matrix.os = 'macos-14'
if: matrix.os == 'windows-2022' || matrix.os == 'macos-14'
with:
repository: redhat-developer/podman-desktop-redhat-account-ext
ref: main
Expand All @@ -164,7 +164,7 @@ jobs:
run: pnpm install

- name: Install SSO extension dependencies
if: matrix.os == 'windows-2022' || matrix.os = 'macos-14'
if: matrix.os == 'windows-2022' || matrix.os == 'macos-14'
working-directory: ./sso-extension
run: pnpm install

Expand Down

0 comments on commit b177bb8

Please sign in to comment.