diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 77cfff0..3483174 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -16,9 +16,7 @@ on: jobs: test: timeout-minutes: 60 - runs-on: ubuntu-latest - container: - image: mcr.microsoft.com/playwright:v1.48.0-jammy + runs-on: macos-14 strategy: fail-fast: false matrix: @@ -34,9 +32,6 @@ jobs: with: path: automated-tests - - name: Configure Git safe directory - run: git config --global --add safe.directory '/__w/automated-tests-web/automated-tests-web' - - name: Setup Node.js for Uplink Web 🔨 uses: actions/setup-node@v4 with: @@ -47,7 +42,11 @@ jobs: - name: Install dependencies for Testing Repo 📦 working-directory: automated-tests - run: npm ci + run: npm install + + - name: Install Playwright Browsers + working-directory: automated-tests + run: npx playwright install --with-deps - name: Run Playwright tests working-directory: automated-tests