From d1f925d49b9f329c5420051aba3ac08bff05d635 Mon Sep 17 00:00:00 2001 From: Putro <29204244+Pewtro@users.noreply.github.com> Date: Sat, 20 Jul 2024 12:43:09 +0200 Subject: [PATCH] [CI] Remove multiple OS runs as it should be wholly unnecessary for this project --- .github/workflows/test.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b7e2fa6..7146eeb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,9 +16,8 @@ jobs: # Test against multiple node versions # Last LTS, current LTS, current, and next LTS (if not same as current) node: [18.x, 20.x, 21.x, 22.x] - os: [ubuntu-latest, macos-latest, windows-latest] name: Test - runs-on: ${{ matrix.os }} + runs-on: ubuntu-latest steps: - name: Checkout Repo uses: actions/checkout@v4