Skip to content
This repository has been archived by the owner on Nov 23, 2023. It is now read-only.

Commit

Permalink
Remove windows-latest from testing
Browse files Browse the repository at this point in the history
  • Loading branch information
SharkmanZA committed Jul 31, 2023
1 parent a775665 commit 437fb4f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permissions:
jobs:
start:
name: Start State 🚀🚀🚀
runs-on: windows-latest
runs-on: ubuntu-latest
steps:
- name: Starting
id: init
Expand All @@ -24,7 +24,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest]
os: [ubuntu-latest, macOS-latest]
needs: start
steps:
- name: Checkout for ${{ runner.os }}
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:

end:
name: End State ✅✅✅
runs-on: windows-latest
runs-on: ubuntu-latest
needs: run_all_tests
steps:
- name: Ending
Expand Down
2 changes: 1 addition & 1 deletion playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default defineConfig({
/* Opt out of parallel tests on CI. */
workers: process.env.CI ? 1 : undefined,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter: process.env.CI ? 'github' : 'html',
reporter: 'html',
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
use: {
/* Base URL to use in actions like `await page.goto('/')`. */
Expand Down

0 comments on commit 437fb4f

Please sign in to comment.