Skip to content

Commit

Permalink
ci: try with multiple workers, update machine versions (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
elias-pap authored Aug 26, 2024
1 parent 85797c0 commit 7cb6774
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04, macos-12, windows-2022]
os: [ubuntu-24.04, macos-13, windows-2022]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion playwright.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default defineConfig({
retries: CI ? 1 : undefined,
fullyParallel: true,
forbidOnly: !!CI,
workers: CI ? 1 : undefined,
workers: CI ? 4 : undefined,
reporter: [["html", { open: "never" }]],
timeout: CI ? 120000 : 60000,
expect: {
Expand Down

0 comments on commit 7cb6774

Please sign in to comment.